Tagged Questions
4
votes
3answers
362 views
Renaming long named method in C# [closed]
I'm working on a project where exist one method with title
string ValidateNewPasswordExpireCurrentPasswordAndCreateNewPassword(...)
I'm sure the method name must be changed. But can't found good ...
3
votes
4answers
880 views
Is function memoization really only for primitives?
I was thinking about this for quite some time. Is function memoization really only for primitives?
I currently have this piece of code:
Public Shared Function Mize(Of TArg1 As Structure, ...
2
votes
2answers
118 views
Property or Method to obtain information about a collection?
Suppose I have a MyList class which extends ObservableCollection<MyObject> where MyObject has the Boolean Property Enabled.
Let's say I want the number of MyObject objects that have the ...
0
votes
1answer
214 views
static or non-static, that is the question? [duplicate]
For comparisons / evaluations of objects of the same class(and other purposes), is it better to define a static or a non-static (is this called "dynamic" by chance?) function?
Sample code:
class ...
-8
votes
6answers
3k views
Function like C# properties?
I've been thinking about how C# properties work and could work.
I know the purpose that C# properties were originally designed for, which is certainly useful. However instead in this question I'm ...