InventoryController.Start C# (CSharp) Method

Start() private method

private Start ( ) : void
return void
    private void Start()
    {
        UpdateInventory();
    }

Usage Example

コード例 #1
0
        static void Main(string[] args)
        {
            Console.Clear();
            InventoryController ic = new InventoryController();
            bool running           = true;

            while (running)
            {
                System.Console.WriteLine(@"
 ____  _____         _   __                     _         
|_   \|_   _|       / |_[  |                   | |        
  |   \ | |   ,--. `| |-'| |--.   ,--.   _ .--.\_|.--.    
  | |\ \| |  `'_\ : | |  | .-. | `'_\ : [ `.-. | ( (`\]   
 _| |_\   |_ // | |,| |, | | | | // | |, | | | |  `'.'.   
|_____|\____|\'-;__/\__/[___]|__]\'-;__/[___||__][\__) )  
 |_   _|    (_) [  |                                      
   | |      __   | |.--.   _ .--.  ,--.   _ .--.  _   __  
   | |   _ [  |  | '/'`\ \[ `/'`\]`'_\ : [ `/'`\][ \ [  ] 
  _| |__/ | | |  |  \__/ | | |    // | |, | |     \ '/ /  
 |________|[___][__;.__.' [___]   \'-;__/[___]  [\_:  /   
                                                 \__.'    
                ");
                running = ic.Start();
            }
        }
All Usage Examples Of InventoryController::Start
InventoryController