using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
Customer c = new Customer();
c.Id = 10;
c.Name= "Petter";
Console.WriteLine("Name : {0} && Id: {1}", c.Name,c.Id);
}
public struct Customer
private string _Name;
private int _Id;
// set up properties
public int Id
get {
return this._Id;
set{
this._Id= value;
// public string Name{get;set;}
public string Name
return this._Name;
this._Name= value;
// Struct Constracture same as Class Constracture name of the Struct
public Customer( int id, string name)
this._Id = id;
this._Name = name;