diff options
Diffstat (limited to 'trunk/Examples/test-suite/csharp/apply_strings_runme.cs')
-rw-r--r-- | trunk/Examples/test-suite/csharp/apply_strings_runme.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/trunk/Examples/test-suite/csharp/apply_strings_runme.cs b/trunk/Examples/test-suite/csharp/apply_strings_runme.cs new file mode 100644 index 000000000..deaa5213b --- /dev/null +++ b/trunk/Examples/test-suite/csharp/apply_strings_runme.cs @@ -0,0 +1,16 @@ + +using System; +using apply_stringsNamespace; + +public class apply_strings_runme { + + private static string TEST_MESSAGE = "A message from target language to the C++ world and back again."; + + public static void Main() { + if (apply_strings.UCharFunction(TEST_MESSAGE) != TEST_MESSAGE) throw new Exception("UCharFunction failed"); + if (apply_strings.SCharFunction(TEST_MESSAGE) != TEST_MESSAGE) throw new Exception("SCharFunction failed"); + SWIGTYPE_p_char pChar = apply_strings.CharFunction(null); + if (pChar != null) throw new Exception("CharFunction failed"); + } +} + |