4
votes
Where can I learn about the various types of .NET lists?
To expound on tobsen's earlier answer, the C5 Generic Collection Library has a large number of, well, collections. I'll describe some of them here:
Queue/Stack
…
4
votes
Reading from file not fast enough, how would I speed it up?
S = SR.ReadLine();
while (S != null)
{
stringFromFile.Append(SR.ReadLine());
}
Of note here, S is never set after that initial ReadLine(), so …
4
votes
Adding a newline into a string in C#
The previous answers come close, but to meet the actual requirement that the @ symbol stay close, you'd want that to be str.Replace("@", "@" + System.Environment.NewLine). …
9
votes
C# Extensions
I would have to say that DRY controls here. Personally, I see nothing wrong with an extension method calling another extension method, especially if that other extension is contained within the sa …
3
votes
Checked exception catching in C#
Check out the ExceptionFinder plug-in by Jason Bock for the .NET Reflector. It does just what you are looking for. Here's a screeny:
…
0
votes
Deleting items from one collection in another collection
Something for reference that is available with the C5 Generic Collection Library for .NET is the RemoveAll method, just as sp …
15
votes
.NET : How do you get the Type of a null object?
So is there any way to get the type of an object that is set to null? I would think there would have to be a way to know what type a storage location is without it being assigned any …
2
votes
XmlSerializer Serialize empty variable to use both tags?
The main issue here is that the XmlSerializer calls WriteEndElement() on the XmlWriter when it would write an end tag. This, however, generates the shorthand …
0
votes
Should you use the private access modifier if it’s redundant?
Always use the explicit form. If for whatever reason the underlying assumption changes, the code with an explicit denotation of access won't break, whereas the implicit connotation my easily break …
1
vote
Can you enumerate a collection in C# out of order?
Using an IList<T> from the C5 Generic Collection Library, Reverse iteration is a feature, rather than extension:
…
0
votes
Random array using LINQ and C#
Using the C5 Generic Collection Library, you could just use the builtin Shuffle() method:
IList<int> nu …
1
vote
How to use IlMerge in a Setup Project?
I'd recommend that you check out the ILMerge MSBuild task. It will take away the complexity of specifying the exact command line arguments as yo …
0
votes
ObservableCollection that also monitors changes on the elements in collection
Check out the C5 Generic Collection Library. All of its collections contain events that you can use to attach callbacks for when items ar …
1
vote
How to find out whether two ICollection<T> collections contain the same objects
Again, using the C5 library, having two sets, you could use:
C5.ICollection<T> set1 = C5.ICollection<T> ();
C5.ICollection<T> set2 = C5.ICollecton<T> ();
if (set1.Unsequenced …
1
vote
Unexcpected result when comparing values retrieved with PropertyInfo.GetValue()
The reason for the failure is that the equality test that gets applied above is a reference equality test. Since the two objects returned by propInfo.GetValue(foo, null), though equal …
