Run.Run C# (CSharp) Méthode

Run() public méthode

public Run ( ) : System
Résultat 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

Exemple #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