コード例 #1
0
ファイル: Program.cs プロジェクト: hufsar06/StudentDB
        static void Main(string[] args)
        {
            // create a single object for the db app
            StudentApp app = new StudentApp();

            // read in data from the input file
            app.ReadDataFromInputFile();

            // operate the database - carry out the user's CRUD operations
            app.RunDatabaseApp();

            // write the data to the output file
            app.WriteDataToOutputFile();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: ijk22701/StudentDB
        static void Main(string[] args)
        {
            //create a single instance of the db application
            StudentApp app = new StudentApp();

            //read in the data from the data file
            app.ReadDataFromInputFile();

            //Rrun the database app
            app.RunDatabaseApp();

            //write data to the output file
            app.WriteDataToOutputFile();
        }