Ejemplo n.º 1
0
 public virtual void StartServer(bool inThread)
 {
     if (inThread)
     {
         thread = new NeoDatis.Tool.Wrappers.OdbThread(this);
         thread.Start();
     }
     else
     {
         Run();
     }
 }
Ejemplo n.º 2
0
		public virtual void StartServer(bool inThread)
		{
			if (inThread)
			{
				thread = new NeoDatis.Tool.Wrappers.OdbThread(this);
				thread.Start();
			}
			else
			{
				Run();
			}
		}