Hi
I need some suggestion
I have a class, e.g
Public class <ClassName>
{
string <_strname>
int <_strsalary>
public string <objectname>
}
set
{
return <objectname>;
}
get
{
<objectname> = value;
}
|
}
i need to create like this code snippet above like, code snippet which contains attributes, method, property please give me some suggestion and peace of code how can i do this kind of snippet
kinds regards
Orcas