Saturday, November 24, 2018

পার্ট 2 - C# টিউটোরিয়াল - Reading and writing to a console

Suggested Articles
Part 1 - Introduction to C#

আমরা এই আর্টিকেলে একটা demo program এর মাধ্যমে দেখবো -

1. console এর সাহায্যে কিভাবে read করা হয়
2. console এর সাহায্যে কিভাবে write করা হয়
3. console এ write করার দুইটা way আছে-
                           a) Concatenation
                           b) Placeholder syntax – Most preferred

Demo Code-
using System;
class Program
{
    static void Main()
    {
        // Prompt the user for his name
        Console.WriteLine("Please enter your name");

        // Read the name from console
        string UserName = Console.ReadLine();

        // Concatenate name with hello word and print
        Console.WriteLine("Hello " + UserName);

        //Placeholder syntax to print name with hello word 
        //Console.WriteLine("Hello {0}", UserName);
    }
}

N.B: C# কিন্তু একটা case sensitive language



পার্ট 2 - C# টিউটোরিয়াল - Reading and writing to a console




No comments:

Post a Comment