User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T00:52:46Zhttp://stackoverflow.com/feeds/user/10178http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1338031/validate-constructor-data2Validate constructor datapaul.richardson2009-08-26T22:59:26Z2009-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-footprint2Pass 'value type' on stack by ref - memory footprintpaul.richardson2009-08-25T17:54:16Z2009-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-namespace1C# expression evaluates to a namespacepaul.richardson2009-08-19T23:17:47Z2009-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-itself11Should a c# class generate instances of itself?paul.richardson2008-11-02T00:18:43Z2009-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<CallRate></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<CallRates> 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#3450870Answer by paul.richardson for Windows Mobile (C#) - Communicating between phone and PCpaul.richardson2008-12-05T20:49:43Z2008-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-01Generate random enum in C# 2.0.paul.richardson2008-11-26T05:15:23Z2008-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<T>()
{
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#3115920Answer by paul.richardson for Console Applicationpaul.richardson2008-11-22T18:11:06Z2008-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#3091972Answer by paul.richardson for What programming language should be taught in Computer Science 101?paul.richardson2008-11-21T15:55:35Z2008-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#2563340Answer by paul.richardson for Should a c# class generate instances of itself?paul.richardson2008-11-02T00:46:23Z2008-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#2149451Answer by paul.richardson for Should I agree to ban the "using" directive from my c# projects?paul.richardson2008-10-18T11:49:29Z2008-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#2015190Answer by paul.richardson for C# Inheritancepaul.richardson2008-10-14T14:58:56Z2008-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#1185790Answer by paul.richardson for What's Your Motto As A Developer/Programmer?paul.richardson2008-09-23T01:12:36Z2008-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#1119711Answer by paul.richardson for What kind of prefix do you use for member variables?paul.richardson2008-09-21T20:18:31Z2008-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#1094573Answer by paul.richardson for Creating Educational Videospaul.richardson2008-09-20T21:20:45Z2008-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#685861Answer by paul.richardson for Stack overflow code golfpaul.richardson2008-09-16T01:35:33Z2008-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#1338055Comment by on Validate constructor data2009-08-27T00:58:41Z2009-08-27T00:58:41Zbtw... when I say set the field directly I mean in the constructor.http://stackoverflow.com/questions/1338031/validate-constructor-data/1338055#1338055Comment by on Validate constructor data2009-08-27T00:51:52Z2009-08-27T00:51:52ZI 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#1338055Comment by on Validate constructor data2009-08-27T00:47:28Z2009-08-27T00:47:28ZYes I understand - I wrote it. What I didn't understand was you comment... sorry.http://stackoverflow.com/questions/1338031/validate-constructor-data/1338062#1338062Comment by on Validate constructor data2009-08-26T23:44:29Z2009-08-26T23:44:29ZThanks 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-dataComment by on Validate constructor data2009-08-26T23:17:46Z2009-08-26T23:17:46ZThis probably should be a communtiy question - could someone please set it properly if so.http://stackoverflow.com/questions/1338031/validate-constructor-data/1338042#1338042Comment by on Validate constructor data2009-08-26T23:14:26Z2009-08-26T23:14:26ZI left it out for clarity but yes thanks...http://stackoverflow.com/questions/1338031/validate-constructor-data/1338055#1338055Comment by on Validate constructor data2009-08-26T23:13:24Z2009-08-26T23:13:24ZHuh? 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#1338046Comment by on Validate constructor data2009-08-26T23:07:44Z2009-08-26T23:07:44ZYes 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#1329915Comment by on Pass 'value type' on stack by ref - memory footprint2009-08-25T18:17:30Z2009-08-25T18:17:30ZI 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#1329915Comment by on Pass 'value type' on stack by ref - memory footprint2009-08-25T18:08:09Z2009-08-25T18:08:09ZThanks - 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#1303179Comment by on C# expression evaluates to a namespace2009-08-19T23:45:46Z2009-08-19T23:45:46ZThe 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#1303160Comment by on C# expression evaluates to a namespace2009-08-19T23:43:45Z2009-08-19T23:43:45ZAh 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#1303149Comment by on C# expression evaluates to a namespace2009-08-19T23:35:41Z2009-08-19T23:35:41ZThanks for the education - Guess I was thinking to literal!http://stackoverflow.com/questions/1303131/c-expression-evaluates-to-a-namespace/1303160#1303160Comment by on C# expression evaluates to a namespace2009-08-19T23:32:47Z2009-08-19T23:32:47ZNP - Thanks for posting.http://stackoverflow.com/questions/1303131/c-expression-evaluates-to-a-namespace/1303160#1303160Comment by on C# expression evaluates to a namespace2009-08-19T23:31:21Z2009-08-19T23:31:21Zwouldn't this alias have to point to a class though?
using Timer=System.Windows.Forms.Timer;
private readonly Timer _clock;
...