Tagged Questions
8
votes
7answers
9k views
“Read only” Property Accessor in C#
I have the following class:
class SampleClass
{
private ArrayList mMyList;
SampleClass()
{
// Initialize mMyList
}
public ArrayList MyList
{
get { return mMyList;}
...
3
votes
5answers
600 views
What is the best way to access properties from the same class, via accessors or directly?
This is something I'm not much consistent about and always curious about what other people do.
How do you access internal properties (private or public)?
For example you've got this property :
...
1
vote
2answers
226 views
Method to access/set a session object in C# .net
I currently have the following code:
public MyObject SessionStore
{
get
{
if (Session["MyData"] == null)
Session["MyData"] = new MyObject();
return (MyData) ...
1
vote
2answers
399 views
Serializing private member data
This is not a duplicate of this question. I have to serialize the Property which is "ReadOnly". I can't do anything on this class, because this is "System.Web.Security.MembershipUser" class, of course ...
0
votes
10answers
414 views
Best practice: Accessor properties or parameterless methods?
Which is the better practice and why?
bool IsTodayMonday { get { return DateTime.Now.DayOfWeek == DayOfWeek.Monday; } }
Or
bool IsTodayMonday()
{
return DateTime.Now.DayOfWeek == ...
0
votes
1answer
577 views
SkinID on custom control not working (asp.net)
I am deriving a control from syste.web.ui.webcontrols.button.
I am then calling it buttonv2.
I am then adding an arbitrary property to this new class, "int abc", accessing it via a get/set accessor ...