Randolpho

14,514
reputation
726 views

Registered User

name Randolpho
member for 1 year
seen 1 hour ago
website
location Middle Tennessee
age 36
I'm a software engineer by trade, busy-body know-it-all by inclination.
5h
comment Spacing out output with Linq to Xml
That does not equate to deprecation. XmlWriter.Create() is essentially a factory method, allowing abstraction to XmlWriter rather than instantiating a concrete XmlTextWriter. But that is merely best practice, not deprecation. Now, granted, XmlWriter.Create() does offer certain benefits, such as better compliance to XML standards, than XmlTextWriter does. But again, that is not deprecation. Both your way and my way are correct enough for the question at hand.
5h
comment Spacing out output with Linq to Xml
It most certainly is not
5h
revised Spacing out output with Linq to Xml
added 139 characters in body; added 31 characters in body
5h
answered Spacing out output with Linq to Xml
9h
comment What’s the equivalent of VB ReadOnly property in C#?
heh... beat me by one second. :D
9h
answered Is anyone actually succesfully using MSTest across the team??
12h
comment The anti-DRY pattern
Why so I did. Edited.
12h
answered The anti-DRY pattern
13h
answered Shared common definitions across C/C++ (unmanaged) and managed C# code
Dec
18
accepted Visual Studio: Help to fix circular reference!
Dec
18
comment Compare 2 List<Dictionary<string, object>>
Ahhh, I see. Nevermind, then. :)
Dec
18
accepted Defining constants for 0 and 1
Dec
18
answered Compare 2 List<Dictionary<string, object>>
Dec
18
answered Defining constants for 0 and 1
Dec
18
awarded  Nice Answer
Dec
17
comment Problem with IEnumerable<T>
Well... you have been around a few months less than me, and here you are with triple the rep... yeah, I guess I can call that an obsession. :)
Dec
17
comment Java Method invocation vs using a variable
@meriton: Perhaps I shouldn't have been so general. "simple getters are almost always inlined by the JIT compiler". Better? BTW, here's a research talk on the subject from Sun: research.sun.com/people/detlefs/…. Note the date... summer, 98. This has been around for a decade.
Dec
17
comment Problem with IEnumerable<T>
See, this is why you have 47k and I only have 13k. :)
Dec
17
comment Problem with IEnumerable<T>
Excellent point.
Dec
17
awarded  Nice Answer
Dec
17
answered Problem with IEnumerable<T>
Dec
17
revised Problem with IEnumerable<T>
added 16 characters in body
Dec
17
answered Don’t give away your internals? [C++]
Dec
17
comment Java Method invocation vs using a variable
I can agree with this more. +100 Maintainability and legibility are far, far more important than performance.
Dec
17
answered Java Method invocation vs using a variable
Dec
17
answered when using moq, I have to know all methods that will be used?
Dec
17
comment Unit test, NUnit or Visual studio ?
#3 is not a feature, it's a problem and #5 is 100% false; MS Test has the ExpectedException attribute, and always has.
Dec
16
answered Why can’t I mock MouseButtonEventArgs.GetPosition() with Moq?
Dec
16
comment Should folder names start with a period?
DUH! I totally misread your post, @Steve. I went and pointed and clicked in Windows Explorer rather than the command shell and everything failed just as you described. Lesson Learned: parse the whole paragraph.
Dec
16
accepted How to calculate Column Selectivity
Dec
16
answered How to calculate Column Selectivity
Dec
16
comment Should folder names start with a period?
I'll admit I haven't adoped Windows 7 yet, but my command shell works just fine creating folders or files with a period. Admittedly, I have to use quotes... mkdir ".NET" ... but other than that, periods work just fine in the shell. Is this a new issue in Win7?
Dec
16
comment Should folder names start with a period?
I must admit, I'm stymied by your second sentence. Care to elaborate as to the dangers of device name clobbers? I was previously unaware there could ever be an issue.
Dec
16
answered Should folder names start with a period?
Dec
15
revised c reading a text file into array line by line and print them
added 6 characters in body
Dec
15
accepted c reading a text file into array line by line and print them
Dec
15
answered c reading a text file into array line by line and print them
Dec
15
comment Public implementation of ropes in C#?
@Vinko: I love irony. Wait... is that irony? I never know anymore.
Dec
15
comment Question with floating point addition
this little edit war is funny. I'm gonna stop trying.
Dec
15
comment Question with floating point addition
Done and done. :)
Dec
15
revised Question with floating point addition
added 126 characters in body
Dec
15
revised Question with floating point addition
added 165 characters in body
Dec
15
comment Best practices for creating libraries that use .NET namespaces
Excellent link to volatile dependencies and in general a great answer. +1!
Dec
15
answered Best practices for creating libraries that use .NET namespaces
Dec
15
accepted How is C# inspired by C++ more than by Java?
Dec
14
answered How to better initialize nullable type from non-nullable?
Dec
14
answered WCF - Preventing Unauthorized Clients
Dec
14
comment How is C# inspired by C++ more than by Java?
@Niel Butterworth: I think it's safe to say that the API and some of the features are inspired by Delphi, yes, but the syntax and runtime? No way.
Dec
13
answered Creating image or graphic in C# from decimal data?
Dec
11
comment C#, why does reSharper Invert IFs? does it give better performance (even slightly)
+1. To Alex you listen, JL. Code for readability and maintainability first. If you find a slow spot, then reach into a bag of tricks for "clever" code.