Run.Run C# (CSharp) Method

Run() public method

public Run ( ) : System
return System
    public Run()
    {
    }

Same methods

Run::Run ( int uniqueID, int personID, int sessionID, string type, double distance, double time, string description, int simulated, bool initialSpeed ) : System
Run::Run ( string eventString ) : System

Usage Example

Ejemplo n.º 1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 private static void Main(string[] args)
 {
     using (Run game = new Run())
     {
         game.Run();
     }
 }
All Usage Examples Of Run::Run