This keyword in C#

Sourav.Kayal
Posted by Sourav.Kayal under C# category on | Points: 40 | Views : 1174
using System;
using System.Linq;
using System.Text;
using System.Collections;
using System.Data;
using System.Xml;
using System.IO;
using System.Diagnostics;
using System.Collections.Generic;
using System.Data.SqlClient;

namespace BlogProject
{
class Test
{
int a;
int b;
public Test(int a,int b)
{
this.a=a;
this.b=b;
}
}
class Program
{
static void Main(string[] args)
{
Test t = new Test(100,100);
Console.ReadLine();
}
}
}

Comments or Responses

Login to post response