Hi
pls explain me diff between these 2;
1)private string name; // the name field
public string Name // the Name property
{
get
{
return name;
}
set{
name=Value
}
}
2)
Private string name;
public string Name
{
get;
set;
}
Go to the complete details ...