myTest.Main C# (CSharp) Method

Main() static private method

static private Main ( string args ) : int
args string
return int
	static int Main (string [] args)
	{
		myTest test = new myTest ();
		if (test.Read () != 1)
			return 1;
		return 0;
	}
}