P Daddy

4,066
Reputation
301 views

Registered User

Name P Daddy
Member for 1 year
Seen 20 hours ago
Website
Location
Age
2d
comment Round a double to x significant figures after decimal point
@leftbrainlogic: Yes, it really does: msdn.microsoft.com/en-us/library/…
Nov
24
comment What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
Accepting IComparer<T> also allows your users (or you) to use Comparer<T>.Default instead of implementing the comparison by hand. The best interface when a comparison is involved usually has three overloads, one taking IComparer<T>, one taking Comparison<T>, and one taking no comparer and assuming Comparer<T>.Default.
Nov
24
comment What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
Yes, Comparison<T> is equivalent to Func<T, T, int>, which is the same interface as IComparer<T>.Compare. This is the standard comparer interface that .NET developers are used to. Most sorting functions only need to compare less than or greater than. You've chosen less than. If you look in Reflector at Array.SorterGenericArray.QuickSort() (or Array.SorterObjectArray.QuickSort()), you'll see that Array.Sort also only uses less than, but it does it with comparer.Compare(a, b) < 0, keeping with the established interface for the platform.
Nov
23
comment What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
+1 because no one else seems to get it
Nov
23
comment What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
It would be more .NETy if you used IComparer<T> or Comparison<T> (or an overload for each), instead of a "less" function, which smacks of STL.
Nov
22
answered Why does clicking a child window not always bring the application to the foreground?
Nov
22
revised Persist a pidl (ITEMIDLIST)
added 2687 characters in body
Nov
21
revised Persist a pidl (ITEMIDLIST)
added 974 characters in body
Nov
21
comment Persist a pidl (ITEMIDLIST)
By the way, for the sake of completeness for those who stumble upon this in the future, you should edit to mention that an ITEMIDLIST is a null-terminated string of these SHITEMID structures, and writing out just the first is not sufficient. I'd make the edit myself, but don't have the balls to edit Joel Spolsky.
Nov
21
comment Persist a pidl (ITEMIDLIST)
I had stumbled upon that post (it's the first, well, now the second, Google hit for "persist pidl"). Raymond mentions that a pidl can be persisted and "spends most of its life in its persistence format", which seems to dance around your suggestion (which is what I had supposed in my question), but doesn't say it explicitly. I wanted confirmation. Now to find out if ILSaveToStream & ILLoadFromStream, as suggested by Jerry Coffin (stackoverflow.com/questions/1774508/…) just do this or something additional.
Nov
21
asked Persist a pidl (ITEMIDLIST)
Nov
19
comment C# Sort list while also returning the original index positions?
I would suggest using Comparer<T>.Default instead of throwing an ArgumentNullExcpetion if comparer is null. Otherwise, +1 for a complete, direct, and performant solution.
Nov
12
awarded  Yearling
Nov
6
comment Class Vs Pure Array Representation
@Qua: WTF? Why the hostility? inked provided an answer addressing your problem as he perceived it. For free. He didn't harm you, and he didn't call your mother a bad name. There's no reason to be nasty.
Nov
6
comment C# Antipatterns
@DisgruntledGoat: They look like noise to me.
Nov
5
comment What real life bad habits has programming given you?
What the hell??
Nov
5
comment What real life bad habits has programming given you?
We've got some Nick Burnses here! Move!
Nov
4
comment What real life bad habits has programming given you?
Thanks for the link!
Nov
4
comment What real life bad habits has programming given you?
... and when you camel-case the morphemes of a derived word, such as "semicolon". I've also seen UnInstall, UnDo, ReDo, and many, many others.
Nov
4
comment C#: Is using Random and OrderBy a good shuffle algorithm?
+1 for smart thinking, btw
Nov
3
comment What real life bad habits has programming given you?
You've been programming while high.
Nov
3
comment C#: Is using Random and OrderBy a good shuffle algorithm?
There is still a minor problem, though. This returns only N-1 elements. If you have 10 elements in the source, this returns only 9 of them. Add yield return elements[0]; after the for loop to correct it.
Nov
3
comment C#: Is using Random and OrderBy a good shuffle algorithm?
Wait a minute. Never mind. I wasn't paying enough attention. The half-swap takes care of repeated random numbers. If it came up zero every time it would just effectively reverse all but the first element.
Nov
3
comment C#: Is using Random and OrderBy a good shuffle algorithm?
@Svish: An extreme example: rng.Next(i + 1) could return zero every time, just like a flipped quarter could come up heads 15 times in a row. Although it won't likely actually come up zero N times in a row, some number of repeats is very likely, so the chances of complete coverage are rather low.
Nov
3
comment C#: Is using Random and OrderBy a good shuffle algorithm?
Ouch! This will likely not return all the items in the source. You can't rely on a random number being unique for N iterations.
Nov
2
answered Access Windows Server 2008 R2 over the internet
Nov
2
comment Do you try to make your code look pretty?
@Ferdinand Beyer: Please learn operator precedence order.
Nov
1
answered Is there a way to get text as soon as possible without waiting for a newline?
Oct
31
comment Is this a good/efficient idiom for implementing Equals and equality/inequality operators?
@Joren: Maybe, maybe not. In my tests, I see a small execution time difference between the two. But (object)foo == null is less to type than object.ReferenceEquals(foo, null), is just as clear, IMO, and doesn't rely on inlining for speed, so why not use it?
Oct
31
answered Is this a good/efficient idiom for implementing Equals and equality/inequality operators?
Oct
30
comment Worst UI You’ve Ever Used
Oh my god. Where to begin. What, you don't add a "%34" option to all your GUIs?
Oct
29
comment Worst UI You’ve Ever Used
The whole company?!
Oct
29
comment Worst UI You’ve Ever Used
@DisgruntledGoat: I disagree. Logging of and locking are very different, even with fast user switching enabled. The distinction between ending your session and not is very important. Sleep and hibernate are more similar, but if you know the difference and are impatient (as I am), then you appreciate having both options.
Oct
29
comment Worst UI You’ve Ever Used
When I buy a roll of Bounty paper towels, I don't have to remember that Bounty is made by Proctor and Gamble and go down the P&G isle at the grocery store. Why must is be this way with software?
Oct
29
comment Worst UI You’ve Ever Used
+1 - Some software companies (:cough: Microsoft :cough:) seem to be in love with their own names. It's difficult to navigate through your start menu with the keyboard when a large number of items start with the same thing. Try starting "Microsoft Word" with the keyboard.
Oct
29
comment Cannot convert type ‘System.Enum’ to int
Note that this will fail if int is not the underlying type of the enum.
Oct
28
comment Class Vs Pure Array Representation
But your text doesn't make that clear. "Release mode, outside of Visual Studio" sounds a lot like equating running without debugging with a release build.
Oct
28
answered Class Vs Pure Array Representation
Oct
28
comment Class Vs Pure Array Representation
@Qua: I should also point out that so harshly criticizing someone for trying to help you is not a good way to build bridges.
Oct
28
accepted Why can’t I find the Var keyword in my Visual C# 2008 Studio?
Oct
28
answered Why can’t I find the Var keyword in my Visual C# 2008 Studio?
Oct
26
revised C# Interface<T> { T Func<T>(T t);} : Generic Interfaces with Parameterized Methods with Generic Return Types
typos
Oct
26
accepted C# Interface<T> { T Func<T>(T t);} : Generic Interfaces with Parameterized Methods with Generic Return Types
Oct
26
answered C# Interface<T> { T Func<T>(T t);} : Generic Interfaces with Parameterized Methods with Generic Return Types
Oct
26
awarded  Nice Answer
Oct
25
awarded  Guru
Oct
16
awarded  Nice Answer
Oct
10
revised Hidden Features of C#?
Markdown isn't broken (in this case). You just didn't know how to use it properly.
Oct
10
revised Hidden Features of C#?
Relinqing
Oct
8
revised Version number of a dll in .NET
More grammar police