User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T00:52:46Z http://stackoverflow.com/feeds/user/10178 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1338031/validate-constructor-data 2 Validate constructor data paul.richardson 2009-08-26T22:59:26Z 2009-08-26T23:07:05Z <p>A sample class in "C# Class Desing Handbook" (pg 137) does not call the classes validation method for a specific field from inside the classes only constructor. So basically the sample class allows you to create an object with bad data and only throws an error for that data when you call the field's property which does validation on it then. So you now have a bad object and don't it know until after the fact.</p> <p>I never understood why they don't just call the property from the constructor thus throwing an error immediately if bad data is found during initialization? I've emailed them to no avail...</p> <p>I tend to use the following format by calling my properties from my constructors - is this proper structure to validate initialization data? ty</p> <pre><code>class Foo { private string _emailAddress; public Foo(string emailAddress) { EmailAddress = emailAddress; } public string EmailAddress { get { return _emailAddress; } set { if (!ValidEmail(value)) throw new ArgumentException (string.Format ("Email address {0} is in wrong format", value)); _emailAddress = value; } } private static bool ValidEmail(string emailAddress) { return Regex.IsMatch (emailAddress, @"\b[A-Z0-9._%+-]+" + @"@[A-Z0-9.-]+\.[A-Z]{2,4}\b", RegexOptions.IgnoreCase); } } </code></pre> http://stackoverflow.com/questions/1329889/pass-value-type-on-stack-by-ref-memory-footprint 2 Pass 'value type' on stack by ref - memory footprint paul.richardson 2009-08-25T17:54:16Z 2009-08-25T18:10:20Z <p>What happens in memory when we pass a value type - which has been stored on the stack - by reference?</p> <p>A temp value/pointer must be created somewhere to change the origninal value when the method completes. Could someone please explain or point me to the answer - lots of stuff on memory but none seem to answer this. ty</p> http://stackoverflow.com/questions/1303131/c-expression-evaluates-to-a-namespace 1 C# expression evaluates to a namespace paul.richardson 2009-08-19T23:17:47Z 2009-08-19T23:58:59Z <p>MSDN docs state "An expression is a fragment of code that can be evaluated to a single value, object, method, or namespace."</p> <p>Could someone please explain what it means for an expression to evaluate to a namespace - how can that be?</p> <p>edit: fixed typo</p> http://stackoverflow.com/questions/256306/should-a-c-class-generate-instances-of-itself 11 Should a c# class generate instances of itself? paul.richardson 2008-11-02T00:18:43Z 2009-01-14T19:49:17Z <p>I have a class that defines a CallRate type. I need to add the ability to create multiple instances of my class by reading the data from a file.</p> <p>I added a static method to my class CallRate that returns a <code>List&lt;CallRate&gt;</code>. Is it ok for a class to generate new instances of itself by calling one of its own constructors? It works, I just wonder if it's the proper thing to do.</p> <p>Thank you, Paul</p> <pre><code>List&lt;CallRates&gt; cr = CallRates.ProcessCallsFile(file); </code></pre> <p>edit: fixed typos.</p> http://stackoverflow.com/questions/344335/windows-mobile-c-communicating-between-phone-and-pc/345087#345087 0 Answer by paul.richardson for Windows Mobile (C#) - Communicating between phone and PC paul.richardson 2008-12-05T20:49:43Z 2008-12-06T12:15:01Z <p>WIMO is working on WiFi to desktop support and may be done. Might be worth a look at the code either way.</p> <p><a href="http://www.wimobot.com/" rel="nofollow">home</a></p> <p><a href="http://www.wimobot.com/SourceCode.aspx#WimoII" rel="nofollow">source</a></p> http://stackoverflow.com/questions/319814/generate-random-enum-in-c-2-0 1 Generate random enum in C# 2.0. paul.richardson 2008-11-26T05:15:23Z 2008-11-29T10:28:41Z <p>Could someone please point me toward a cleaner method to generate a random enum member. This works but seems ugly.</p> <p>Thanks!</p> <pre><code>public T RandomEnum&lt;T&gt;() { string[] items = Enum.GetNames(typeof( T )); Random r = new Random(); string e = items[r.Next(0, items.Length - 1)]; return (T)Enum.Parse(typeof (T), e, true); } </code></pre> http://stackoverflow.com/questions/311543/console-application/311592#311592 0 Answer by paul.richardson for Console Application paul.richardson 2008-11-22T18:11:06Z 2008-11-22T18:24:23Z <p>In c# I just put a break point at the end of my code to keep the console window open. I used to use Console.Read(); but got sick of typing it...</p> <p>Edit: btw I just use this for my debugging purposes. If it needs to be a feature then Console.Read();</p> http://stackoverflow.com/questions/309160/what-programming-language-should-be-taught-in-computer-science-101/309197#309197 2 Answer by paul.richardson for What programming language should be taught in Computer Science 101? paul.richardson 2008-11-21T15:55:35Z 2008-11-21T15:55:35Z <p>I'm finishing up my degree now and all core courses were in c++. I'm glad they were as it prepared me for what most lanugages could throw at me and made learning java, and c# very easy... As for overwhelming them goes - well maybe the language should and weed out the students that don't really want to learn... ps I have a friend that learned on Java and is now using c++ at work and wished he'd learned it in school!</p> http://stackoverflow.com/questions/256306/should-a-c-class-generate-instances-of-itself/256334#256334 0 Answer by paul.richardson for Should a c# class generate instances of itself? paul.richardson 2008-11-02T00:46:23Z 2008-11-02T00:46:23Z <p>Thanks all!</p> http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214945#214945 1 Answer by paul.richardson for Should I agree to ban the "using" directive from my c# projects? paul.richardson 2008-10-18T11:49:29Z 2008-10-18T11:49:29Z <p>you can also use aliases...</p> <p>using diagAlias = System.Diagnostics;</p> <p>namespace ConsoleApplication1 { class Program { static void Main(string[] args) { diagAlias.Debug.Write(""); } } }</p> http://stackoverflow.com/questions/201440/c-inheritance/201519#201519 0 Answer by paul.richardson for C# Inheritance paul.richardson 2008-10-14T14:58:56Z 2008-10-14T14:58:56Z <p>Shouldn't we be fully qualifing our types in a class anyway? It was the mantra driven into my head while learning c++ anwyay.</p> http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/118579#118579 0 Answer by paul.richardson for What's Your Motto As A Developer/Programmer? paul.richardson 2008-09-23T01:12:36Z 2008-09-23T01:12:36Z <p>persistence is the mother of perceived simplicity…</p> http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111971#111971 1 Answer by paul.richardson for What kind of prefix do you use for member variables? paul.richardson 2008-09-21T20:18:31Z 2008-09-21T20:18:31Z <p>I've used to use m_ perfix in C++ but in C# I prefer just using camel case for the field and pascal case for its property.</p> <pre><code>private int fooBar; public int FooBar { get { return fooBar; } set { fooBar = value; } } </code></pre> http://stackoverflow.com/questions/109344/creating-educational-videos/109457#109457 3 Answer by paul.richardson for Creating Educational Videos paul.richardson 2008-09-20T21:20:45Z 2008-09-20T21:20:45Z <p><a href="http://www.techsmith.com/?CMP=KyahooTSCtm" rel="nofollow">Camtasia 5</a> is awsome - I've been using it since v3 and love it. You can render to just about any format.</p> http://stackoverflow.com/questions/62188/stack-overflow-code-golf/68586#68586 1 Answer by paul.richardson for Stack overflow code golf paul.richardson 2008-09-16T01:35:33Z 2008-09-16T01:50:33Z <p>won't be the shortest but I had to try something... C#</p> <p>string[] f = new string[0]; Main(f);</p> <p>bit shorter</p> <pre><code>static void Main(){Main();} </code></pre> http://stackoverflow.com/questions/1338031/validate-constructor-data/1338055#1338055 Comment by on Validate constructor data 2009-08-27T00:58:41Z 2009-08-27T00:58:41Z btw... when I say set the field directly I mean in the constructor. http://stackoverflow.com/questions/1338031/validate-constructor-data/1338055#1338055 Comment by on Validate constructor data 2009-08-27T00:51:52Z 2009-08-27T00:51:52Z 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... http://stackoverflow.com/questions/1338031/validate-constructor-data/1338055#1338055 Comment by on Validate constructor data 2009-08-27T00:47:28Z 2009-08-27T00:47:28Z Yes I understand - I wrote it. What I didn't understand was you comment... sorry. http://stackoverflow.com/questions/1338031/validate-constructor-data/1338062#1338062 Comment by on Validate constructor data 2009-08-26T23:44:29Z 2009-08-26T23:44:29Z 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. http://stackoverflow.com/questions/1338031/validate-constructor-data Comment by on Validate constructor data 2009-08-26T23:17:46Z 2009-08-26T23:17:46Z This probably should be a communtiy question - could someone please set it properly if so. http://stackoverflow.com/questions/1338031/validate-constructor-data/1338042#1338042 Comment by on Validate constructor data 2009-08-26T23:14:26Z 2009-08-26T23:14:26Z I left it out for clarity but yes thanks... http://stackoverflow.com/questions/1338031/validate-constructor-data/1338055#1338055 Comment by on Validate constructor data 2009-08-26T23:13:24Z 2009-08-26T23:13:24Z 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. http://stackoverflow.com/questions/1338031/validate-constructor-data/1338046#1338046 Comment by on Validate constructor data 2009-08-26T23:07:44Z 2009-08-26T23:07:44Z 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. http://stackoverflow.com/questions/1329889/pass-value-type-on-stack-by-ref-memory-footprint/1329915#1329915 Comment by on Pass 'value type' on stack by ref - memory footprint 2009-08-25T18:17:30Z 2009-08-25T18:17:30Z 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. http://stackoverflow.com/questions/1329889/pass-value-type-on-stack-by-ref-memory-footprint/1329915#1329915 Comment by on Pass 'value type' on stack by ref - memory footprint 2009-08-25T18:08:09Z 2009-08-25T18:08:09Z 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. http://stackoverflow.com/questions/1303131/c-expression-evaluates-to-a-namespace/1303179#1303179 Comment by on C# expression evaluates to a namespace 2009-08-19T23:45:46Z 2009-08-19T23:45:46Z The page I was on didn't have that part but I'm reading that page now - ty. http://stackoverflow.com/questions/1303131/c-expression-evaluates-to-a-namespace/1303160#1303160 Comment by on C# expression evaluates to a namespace 2009-08-19T23:43:45Z 2009-08-19T23:43:45Z Ah I got ya - The alias points to a namespace! I've only pointed them to specific types. http://stackoverflow.com/questions/1303131/c-expression-evaluates-to-a-namespace/1303149#1303149 Comment by on C# expression evaluates to a namespace 2009-08-19T23:35:41Z 2009-08-19T23:35:41Z Thanks for the education - Guess I was thinking to literal! http://stackoverflow.com/questions/1303131/c-expression-evaluates-to-a-namespace/1303160#1303160 Comment by on C# expression evaluates to a namespace 2009-08-19T23:32:47Z 2009-08-19T23:32:47Z NP - Thanks for posting. http://stackoverflow.com/questions/1303131/c-expression-evaluates-to-a-namespace/1303160#1303160 Comment by on C# expression evaluates to a namespace 2009-08-19T23:31:21Z 2009-08-19T23:31:21Z wouldn't this alias have to point to a class though? using Timer=System.Windows.Forms.Timer; private readonly Timer _clock; ...