Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Compile and Execute C# Sharp Online

using System.IO;
using System;

class Program
{
    
    static string input = "";
    static string description = "";
    
    static void Main()
    {
        input = Console.ReadLine();
        
        string[] splitInput = input.Split('>');
        description = splitInput[0];
        
        Console.WriteLine("Description: " + description);
        
        for(int i = 1; i < splitInput.Length; i++)
        {
            understand(splitInput[i].ToLower());
        }
        
    }
    
    static void understand(string line)
    {
        if(line.StartsWith("implying"))
        {
            string[] splitLine = line.Split(' ');
            if(splitLine[1] == "i" &&  splitLine[2] == "won't")
            {
                if()
            }
        }
        else
            Console.WriteLine("ERR");
    }
    
    public struct variable
    {
        string value;
        public variable(string type)
        {
            value = type + ":";
        }
    }
    
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.