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;}
...
5
votes
1answer
294 views
MATLAB Lazy Evaluation in Dependent Property
I have a class with a few properties that are dependent, but that I'd really like to calculate only once.
I've just about concluded that using lazy evaluation on a dependent class property in MATLAB ...
4
votes
3answers
1k views
C# set accessor accessible to all types in assembly, and get assessor only to derivated types. How to?
This property in a type with no access modifier (thus internal access):
class SomeType {
private int length;
internal int Length {
get { return length; }
set length = value; }
...
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
4answers
855 views
c# property get,set with different types
I have such an enum and a property.
public enum Type
{
Hourly = 1,
Salary = 2,
None = 3
};
public string EmployeeType
...
1
vote
3answers
226 views
Objective-C :: using a method to change an object
I have a class called "CardSet", containing an NSMutableArray* cardSet to hold "cards", which I extend to make "DeckCards". I'd like "CardSet" to have a method called "(void)addCard:(Card*)" (and ...
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 == ...