//test.cs
using System;
namespace tester{
public class testclass {
public String myString;
public void setMystring(){
myString = "hello world";
}
public String getString(){
return myString;
}
}
}
You help would be appreciated!
Thanks
abzI assume you aren't using Visual Studio .NET
You answered your own questions:
compile the cs file:
cs /t:library testclass.cs
and put it in your application's bin directory.
0 comments:
Post a Comment