Hi
Not sure exactly what your query is, but what I could get is that you wish to access a property via a private member, the code can be as below:
//Declare a private variable
private string _cNotes;
//Declare public property
public string cNotes
{
get
{ return _cNotes; }
set
{ _cNotes = value; }
}
If I have mis-understood your query, do get back with the exact query.
Regards
Mike
|