From 7a0d21c028c073e0ff3c64ab0bd7958e79816d45 Mon Sep 17 00:00:00 2001 From: Davide Morelli Date: Fri, 13 Jan 2006 13:02:22 +0000 Subject: single atom ok, no luck with arrays svn path=/trunk/externals/clr/; revision=4399 --- external/External.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'external/External.cs') diff --git a/external/External.cs b/external/External.cs index f09487d..215461c 100755 --- a/external/External.cs +++ b/external/External.cs @@ -41,7 +41,6 @@ namespace PureData - public void Sel1() { pd.PostMessage("Sel1 invoked!"); @@ -92,11 +91,14 @@ namespace PureData public void SelGenericList(Atom a) { - Console.WriteLine("a is type " + a.type); - Console.WriteLine("float = " + a.float_value); - Console.WriteLine("stringa = " + a.string_value); + + Console.WriteLine("a is type " + a.type); + Console.WriteLine("float = " + a.float_value); + Console.WriteLine("stringa = " + a.string_value); + } + /* public void SelGenericList(Atom [] list) { @@ -110,11 +112,9 @@ namespace PureData pd.PostMessage("a is type " + a.type); pd.PostMessage("float = " + a.float_value); pd.PostMessage("stringa = " + a.string_value); - - } - + } } -*/ +*/ public int test(int a) { -- cgit v1.2.1