InstanceMain() public method

This is the "real" main. The class main() instantiates a tar object for the application and then calls this method. Process the arguments and perform the requested operation.
public InstanceMain ( string argv ) : void
argv string
return void
Ejemplo n.º 1
0
 /// <summary>
 /// The main entry point of the tar class.
 /// </summary>
 public static void Main(string[] argv)
 {
     Tar tarApp = new Tar();
     tarApp.InstanceMain(argv);
 }
    /// <summary>
    /// The main entry point of the tar class.
    /// </summary>
    public static void Main(string[] argv)
    {
        Tar tarApp = new Tar();

        tarApp.InstanceMain(argv);
    }