Esempio n. 1
0
        public static double throwCellMatrix(
            [Parameter("Just any random string ")] string err
            )
        {
            ArgumentList theContent = new ArgumentList("EXCEPTION");

            theContent.add("Error", "Don't worry, this is a dummy Error :-)");
            throw (new cellMatrixException("WOW its warm up here ", theContent.AllData()));
        }
Esempio n. 2
0
 public static double throwCellMatrix(
                      [Parameter("Just any random string ")] string err
                     )
 {
     ArgumentList theContent = new ArgumentList("EXCEPTION");
     theContent.add("Error", "Don't worry, this is a dummy Error :-)");
     throw (new cellMatrixException("WOW its warm up here ",theContent.AllData()));
 }
Esempio n. 3
0
 public static CellMatrix EchoArgList(
     [Parameter(" arguments to echo")] ArgumentList args
     )
 {
     return(args.AllData());
 }