MyTest.Test C# (CSharp) Method

Test() public method

public Test ( DateTime d ) : void
d DateTime
return void
	public void Test (DateTime d)
	{
	}
}

Usage Example

コード例 #1
0
        static void Main(string[] args)
        {
            int x = 2;

            MyTest mt = new MyTest();

            mt.Test();
            Console.WriteLine("Hello World!" + x);
        }
All Usage Examples Of MyTest::Test