internal static Params MakeDefaultProject() { Params p = new Params(); p.myInt = 0; p.myArray = new string[] { "This ", "is ", "default ", "string-array" }; p.myString = "default string"; return p; }
public static double[][] RunCalc(Params parms) { throw new NotSupportedException("method's not yet implemented"); }