Bruce

1,315
Reputation
81 views

Registered User

Name Bruce
Member for 1 year
Seen Nov 18 at 22:15
Website
Location Seattle, WA
Age 40
Software developer at Microsoft (Windows Live), avid Science Fiction reader, devoted husband and father of three.
Oct
22
comment Tricky C# syntax for out function parameter
Thanks! Excellent detail. So while Queue is a reference type, the necessity for a 'ref' parameter depends on whether or not he sets that parameter to a different Queue object in his function, with the expectation of the caller seeing the new object.
Oct
22
accepted Tricky C# syntax for out function parameter
Oct
22
comment Tricky C# syntax for out function parameter
I checked the docs, it appears it actually is ok to initialize an out variable; presumably the reference to the old value is discarded when the function returns a new one.
Oct
22
answered Tricky C# syntax for out function parameter
Oct
22
answered camel case method names
Oct
22
accepted Very strange char array behaviour
Oct
22
comment Very strange char array behaviour
where does 'fname_length' come from when you do that write? If it is just strlen(fname) then it won't include the null terminator character.
Oct
22
answered Very strange char array behaviour
Oct
22
answered What is the difference between AntiXss.HtmlEncode and HttpUtility.HtmlEncode?
Sep
14
awarded  Yearling
Jul
28
comment Cleanest way to parse this pattern of strings?
Here are some more test cases for you: Prince Remix (1999) (1999) 2001 Soundtrack (2001) (1974)
Jul
15
answered jQuery on hover with multiple function() calls is not working as I expected
Jul
8
comment How do I distinguish between duplicate cookies?
Yeah, that's what the IE team told me too. Major bummer.
Jul
7
comment How do I distinguish between duplicate cookies?
Interesting, but unfortunately I don't have control over where and how the cookie gets created.
Jul
7
comment How do I distinguish between duplicate cookies?
Yes, exactly - I only want to see the cookie for the subdomain. How can I tell them apart?
Jul
7
comment How do I distinguish between duplicate cookies?
I don't know the correct wording for a domain that is the same as another domain, but with an additional segment on the hostname. Hopefully the example makes it clear. I changed the wording to replace 'parent' with some more detailed parenthetical text.
Jul
7
revised How do I distinguish between duplicate cookies?
added 120 characters in body
Jul
7
asked How do I distinguish between duplicate cookies?
Jun
23
comment How do I debug ASP.NET compilation errors?
Thanks for the pointers! It turned out to be a combination of configuration problems, which was pulling in stale components, which was breaking some code generation the site was doing. Some other folks on the team put me on the chance, so fortunately or unfortunately I didn't get much chance to practice the debugging tips you described. Maybe next time.
Jun
22
asked How do I debug ASP.NET compilation errors?
Jun
19
answered Should web services throw exceptions OR result objects.
Jun
17
comment Is there a way to derive from a class with an internal constructor?
Understood about the state - there are limitations. I don't understand your comment about static methods - sure, the extension method is static, but it has access to the object instance via the 'this' parameter.
Jun
17
comment Is there a way to derive from a class with an internal constructor?
You just 'new' it up the same way you do already - it magically gets new methods that you've added to it.
Jun
17
answered Is there a way to derive from a class with an internal constructor?
Jun
17
accepted How to use DateTime in WHERE clause (LINQ)?
Jun
17
answered How to use DateTime in WHERE clause (LINQ)?
Jun
17
answered JQuery Ajax call gets resolved to the current Controller Folder, Instead of root Folder
Jun
17
accepted Static Web Service over non-static
Jun
17
answered Static Web Service over non-static
Jun
12
accepted lambda extension to combine lists
Jun
4
answered Can I get WCF to run on VS Express
Jun
4
revised String Problem in C++
edited tags
Jun
3
answered assigning character to char pointer
Jun
3
answered Do you prefer to return the modified object or not?
Jun
3
comment What might cause an XMLHttpRequest to never change state in Firefox?
if onreadystatechange wasn't working, I think the web would collapse. maybe the XmlHttpRequest object is being deleted or aborted before the response comes back? Is there more to the repro code, or is what you show the whole thing? Maybe your firefox installation is corrupt? grin
Jun
3
answered What might cause an XMLHttpRequest to never change state in Firefox?
Jun
3
answered lambda extension to combine lists
Jun
3
answered Recursively freeing C structs
Jun
2
revised How to write a transactional, multi-threaded WCF service consuming MSMQ
added code sample
Jun
2
comment How to write a transactional, multi-threaded WCF service consuming MSMQ
Before I try writing code, can you clarify one point? Is your thought that the message contains a unique identifier, and that A and B both have the same identifier? So if you receive messsages A1, A2, A3 and B1, B2, B3 you know that A1 goes with B1, etc? I hope that is the case, because with multiple threads receiving messages at the same time, I don't know how else you'll know which A goes with which B.
Jun
2
comment How to write a transactional, multi-threaded WCF service consuming MSMQ
Static dictionary is not thread-safe. I'll update my answer with some sample code.