Re: [DOTNET] OT: spaces in subject line

2002-06-13 Thread Larry McCoy
Ian, Thanks for the explanation. It seems to me, after reading the various replies I've seen is that it is a combination of several things. I don't think it is just the email client. (I'm guess that's what you mean when you say "Mail user agents") I have been using Outlook (not Outlook Express

[DOTNET] OT: spaces in subject line

2002-06-12 Thread Larry McCoy
Sorry about the off-topic, but ... I've noticed that all of the postings to this list (and the other DevelopMentor lists I am on) have a subject line with five (5) spaces in them. This results in them not being "sorted" properly by subject in my inbox. i.e. All "reply" items start with the su

Re: [DOTNET] Accessing struct properties

2002-05-24 Thread Larry McCoy
Jim, I was able to get the last example to compile with the following modification: Foo[] foos = new Foo[1]; foos[0] = new Foo(); foreach(Object obj in foos) { Foo foo = (Foo) obj; foo.Bar = "bar"; } //but foos[0].Bar is still "" here... Note that difference is that the type of t

Re: [DOTNET] Use of unassigned local variable

2002-04-19 Thread Larry McCoy
Curt, Why do you say you aren't going to execute the return statement? As I read the code, the "return author" statement WILL execute after the finally block completes. The only way I can see that the return statement wouldn't get executed is if you had a catch block, and rethrew the exception (