Tools and libraries to glue C/C++ APIs to high-level languages
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using System; |
|
|
|
public class HelloTests |
|
{ |
|
public static void Main (String[] args) |
|
{ |
|
var hello = new Hello(); |
|
hello.PrintHello("Hello world"); |
|
|
|
Console.WriteLine("True =" + hello.test1(3, 3.0f).ToString()); |
|
Console.WriteLine("False =" + hello.test1(2, 3.0f).ToString()); |
|
} |
|
}
|
|
|