GR.Gambling.VenueClient.Start C# (CSharp) Method

Start() public method

public Start ( ) : void
return void
        public void Start()
        {
            if (!File.Exists(path))
            {
                Console.WriteLine("Venue path " + path + " doesn't exist.");
                throw new FileNotFoundException();
            }

            ProcessStartInfo psi = new ProcessStartInfo(path, start_args);

            process = Process.Start(psi);
        }