ExampleGenerator.CreateExamples.Go C# (CSharp) Method

Go() public method

public Go ( ) : void
return void
        public void Go () {
            // Delete data from previous runs
            MakeClean();

            //// here make the examples
            //MakeExamples ();
            Go(Output1, Output2);

            // Make the documentation
            MakeDocs();
            }

Same methods

CreateExamples::Go ( string Output1, string Output2 ) : void

Usage Example

        static void Main(string[] args) {

            var Class = new CreateExamples();
            Class.Go(args[0], args[1]);
            }
All Usage Examples Of ExampleGenerator.CreateExamples::Go