Skip to main content

Hello Codezila C#

Introduciton

Printing message is usually our first task while learning a programming language. Just like anyother language C# also provides facility to print messages which is the most vital thing. Now just as C++, Java or Python, C# also has some built in libraries which provide different classes for different approaches. For printing a line we use System namespace which has Console class with function WriteLine().

Lets see an example

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {//to print string we use Console.WriteLine("");
            Console.WriteLine("Hello Codezila");
            Console.WriteLine("Hello azuma");
            //to wait for user to press enter to process further we use Console.ReadLine();
            Console.ReadLine();
        }
    }
}
For further practice you can change the strings and print multiple strings at a time. Console.WriteLine() prints string in next line, to print strings in same line use Console.Write().
Beside Console.Write() you can also use concatenation.

Lets see an example

namespace PrintingWithConcatenation
{
    class Program
    {
        static void Main(string[] args)
        {  //to concatenate use + 
            Console.WriteLine("hello" + " azuma");
            Console.ReadLine();
        }
    }
}
For furthur queries click here

Comments

Popular posts from this blog

Theory of Automata Assignment #2 Part #2 Regular Expression # 6 The set of strings over {a,b} that contain at least two a's or exactly two b's. (a+b)*(a)(b*)a(a+b)*+a*b(a*)b(a*) Regular Expression # 7 The set of strings over {a,b} that contain even length but not multiple of 3 (aa*)(aaa^) Regular Expression # 8 The language over {a,b}contains exactly one double letter.   (ε + b)(ab) ∗aa(ba) ∗(ε + b) + (ε + a)(ba) ∗ bb(ab) ∗(ε + a)

TA ASSIGNMENT 1 PART 3

Theory of Automata Assignment #1 Part #3 Recursive Definition #11: Language of Expressions having at least one operator defined on  Σ ={+,-,*,/,a,b}  Step 1#- a+b ,a*b,a/b and a-b are in L Step 2#- If x is in L then x+x,x-x,x*x,x/x is also in L Step 3#- No words except generated above can be considered as member of Language. Recursive Definition #12: Language of string starting and ending on different alphabet defined on  Σ ={a,b} Step 1#- ab and ba are in L Step 2#- If x is in L then axb,and bxa are also in  Σ*.   Step 3#- No words except generated above can be considered as member of Language. Recursive Definition #13: Language of even numbers Step 1#- 0 and 2 are in L Step 2#- If x is in L then x+2 and x-2 is also in L .   Step 3#- No words except generated above can be considered as member of Language. Recursive Definition #14: Language of negative integers d...

C# Snippets and Tricks

Hello azumavengers and welcome to my blog. Today we are going to talk about the c#. C# Snippets and Tricks C# Snippets and Tricks Series 1 Part 1 By Codezila  Like our Facebook page, its link is given below Codzila Facebook Page