예제 #1
0
 static void Main(string[] args)
 {
     PredictSP500 predict = new PredictSP500();
     if (args.Length > 0 && args[0].Equals("full", StringComparison.CurrentCultureIgnoreCase))
         predict.run(true);
     else
         predict.run(false);
 }