Search This Blog

Tuesday, September 13, 2011

Property in .net

For create property in .net is very easy.
just get and set it Foe Example u want to create property for Name then

just

public string Name
{
get;set;
}

here public is access specifier string return type,Name Property Name

No comments:

Post a Comment