Run Code  | API  | Code Wall  | Misc  | Feedback  | Login  | Theme  | Privacy  | Patreon 

base interior 0.1

//Microsoft (R) Visual C# Compiler version 3.4.0-beta4-19562-05 (ff930dec)
//Copyright (C) Microsoft Corporation. All rights reserved.


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;

namespace Rextester
{
 
    public class Wxlfiesdatabase
   {
       public static void Main()
       {    
        //Console Clearing
        Console.Clear();
        //Payload Completeion 
        Console.WriteLine("Sucsessfully loaded database");
        //User Prompt
        Console.WriteLine("What will it be today?");
        //Main Options
        string Main = Console.ReadLine();
        switch (Main)
        {
            //Avi Option
            case "Avi":
            Console.WriteLine("Avi Option Selected");
            string Avi = Console.ReadLine();
            switch (Avi)
            {
            //Normal Avis
            case "Normal":
                Console.WriteLine("Normal Loaded");
                break;
            //Crash Avis
            case "Crash":
                Console.WriteLine("Crash Loaded");
                break;
            //SCXRFXCE Avis
            case "SCXRFXCE":
                Console.WriteLine("SCXRFXCE Loaded");
                break;
            }

        Console.ReadKey();
                break;
        }
        Console.ReadKey();
        }
    }
}
 run  | edit  | history  | help 0