Application.MyClass.Run C# (CSharp) 메소드

Run() 공개 메소드

public Run ( ) : void
리턴 void
		public void Run ()
		{
		}
	}

Usage Example

예제 #1
0
파일: test.cs 프로젝트: mono/gert
		static void Main ()
		{
			try {
				MyClass c = new MyClass ();
				c.Run ();
			} catch (Exception) {
			}
		}
All Usage Examples Of Application.MyClass::Run
MyClass