249
reputation
48 views

Registered User

name
member for 1 year
seen Nov 23 at 18:42
website
location
age
Dec
1
awarded  Popular Question
Sep
16
awarded  Yearling
Aug
27
comment Validate constructor data
btw... when I say set the field directly I mean in the constructor.
Aug
27
comment Validate constructor data
I think you missed the point of my question. The sample in the book just sets the field directly with no validation whatsoever but does validate the the field and throws an error when accessing the property after the object is created...
Aug
27
comment Validate constructor data
Yes I understand - I wrote it. What I didn't understand was you comment... sorry.
Aug
26
comment Validate constructor data
Thanks Eric - I'll look into the Broken Rules approach! Just starting to build frameworks and still learning. Picked up 'Framework Design Guidelines' which I'm having a blast with! Great book.
Aug
26
comment Validate constructor data
This probably should be a communtiy question - could someone please set it properly if so.
Aug
26
comment Validate constructor data
I left it out for clarity but yes thanks...
Aug
26
comment Validate constructor data
Huh? The original setting of the email address is in the constructor which calls _emails' property. If I just set _email directly then I would have a bad object if a bad email was passed in. It would only be validated if the property was changed after the object was instantiated.
Aug
26
comment Validate constructor data
Yes getting only valid objects is the idea here - I add overloads of the constructor to allow users to enter a blank field where it's ok to do so. ty.
Aug
26
asked Validate constructor data
Aug
25
comment Pass ‘value type’ on stack by ref - memory footprint
I do use reflector often but don't fully understand IL call just yet. I must admit I didn't think to check the IL here for some reason... Thanks again.
Aug
25
comment Pass ‘value type’ on stack by ref - memory footprint
Thanks - So a pointer is create on the stack to values' location on the stack... cool! I wish the call stack would show exactly what is going on in memory. Should probably get a myself a memory profiler.
Aug
25
asked Pass ‘value type’ on stack by ref - memory footprint
Aug
19
comment C# expression evaluates to a namespace
The page I was on didn't have that part but I'm reading that page now - ty.
Aug
19
comment C# expression evaluates to a namespace
Ah I got ya - The alias points to a namespace! I've only pointed them to specific types.
Aug
19
comment C# expression evaluates to a namespace
Thanks for the education - Guess I was thinking to literal!
Aug
19
comment C# expression evaluates to a namespace
NP - Thanks for posting.
Aug
19
comment C# expression evaluates to a namespace
wouldn't this alias have to point to a class though? using Timer=System.Windows.Forms.Timer; private readonly Timer _clock; ...
Aug
19
revised C# expression evaluates to a namespace
added 21 characters in body
Aug
19
asked C# expression evaluates to a namespace