Re: Member variables style questions
- From: "dehranph@xxxxxxxxx" <dehranph@xxxxxxxxx>
- Date: 31 Jan 2006 17:58:09 -0800
i still use m_ prefix to all member variables that is used on property
declarations.
private readonly string m_fileName = string.Empty;
public string FileName{
get{ return m_fileName; }
}
this way i have an idea that the variable is used by the property and
nothing else. I just put underscrore (_) for private fields.
.
- Prev by Date: Re: Setting up a webserver
- Next by Date: Re: Setting app wide icon?
- Previous by thread: Re: Setting up a webserver
- Next by thread: Re: Member variables style questions
- Index(es):