I'm testing Script# right now and created a simple Script# class library with a single class.
The class has a method that does something like this:
public static string[] SplitName(string name)
{
return name.Split(' ');
}
It compiles fine and generates the JS output file but when I reference this assembly from my NUnit project and try to test it a MissingMethodException is thrown.
System.MissingMethodException : Method not found 'System.String[] System.String.Split(Char)'.
What am I doing wrong?