Ejemplo n.º 1
0
 /// <summary>
 /// Creates a new client program and parses arguments to determine a course of actions.
 /// </summary>
 /// <param name="args">command line arguments</param>
 public ClientProgram(string[] args)
 {
     this.dir = new IntegerSequenceDir(false);
     this.ProcessArgs(args);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Creates a new server program and parses arguments to determine a course of actions.
 /// </summary>
 /// <param name="args">command line arguments</param>
 public ServerProgram(string[] args)
 {
     this.dir = new IntegerSequenceDir(true);
     this.ProcessArgs(args);
 }