Example #1
0
 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;
 }
Example #2
0
 public static double[][] RunCalc(Params parms)
 {
     throw new NotSupportedException("method's not yet implemented");
 }