Sunday 31 January 2016

Lecture#1 ka Point#61 (Csharp Roman Hindi/Urdu Me).

Open visual studio → Click "File" → Select "New Project" → Window on left side → Console application(visual C#)


Program:- (Program.cs)
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 namespace ConsoleApplication1
7 {
8 class Program
9 {
10 Static Void Main(String[] args)
11 {
12 byte b = 100;
13 Console.WriteLine(b);
14 Console.ReadLine();
15 }
16 }
17 }
Output: 100

No comments:

Post a Comment