0
votes
ArgumentNullException or NullReferenceException from extension method?
From the user's standpoint, the method looks and acts like an instance method, so if I were them, I would expect to see a NullReferenceException.
That said, I would suggest throwing either …
1
vote
Best way to parse DateTime to SQL server
Formatting using DateTime.ToString("yyyy-MM-dd HH:mm:ss:fff") will match the MS SQL Server date/time format. (I believe SQL Server is fairly "intelligent" about recognizing slightly different-look …
1
vote
Is it better to use the column name or column index on .Net DataSets?
If you did decide to obfuscate the database by changing column names in the future, you could alias those columns in your query to keep the indexer code functional. I suggest indexing by name. …
0
votes
Official LINQ Extension Methods
You could search for them yourself using .NET Reflector and the CodeSearch
add-in.
…
9
votes
Does a method that returns a collection get called in every iteration in a foreach statement in C#?
Don't worry about it; it'll only execute GetDataTable() once internally to get the enumerator object from the DataRowCollection, and then fetch a new item from it every run through the loop.
…
0
votes
Control changes in windows form C#
The easiest way to do this would be to simply use a variable on the form named something like "IsChanged." Set it false when the form is initially displayed, and set it true if they make any chang …
8
votes
Is there an equivalent to ‘sscanf()’ in .NET?
There's no such method, probably because of problems resolving ambiguities:
string.Unformat("This {0} very {1}.", "This is very very funny.")
// are the parameters equal to "is" and …
3
votes
Reasons to Learn LINQ
If you can convince your boss to let you learn new programming languages and technologies on company time, more power to you; but I wouldn't expect to, if I were you. Learn it on your own and help …
0
votes
Bitwise OR Combination
RegexOptions is an enumeration, meaning that internally, it's represented as an integer. The values of it look something like this:
// note the powers of 2
enum RegexOptions {
I …
1
vote
Garbage collection in yield Methods
Well, garbage collection doesn't collect it right away. It can't, obviously.
Internally, when you do something like a foreach over your method, it's calling GetEnumerator() and th …
0
votes
Dynamically creating a new instance of IList’s type
The big problem here is: If you don't know the type, how do you know how to make a new one? Not every type in the world has a constructor that takes an int and a string.
…
5
votes
What is the most impressive LINQ statement that you have come across?
Mads Torgersen demonstrates how to write a self-contained recursive lambda expression i …
1
vote
Can I pass parameters to String.Format without specifying numbers?
Afraid not -- where would it put the objects into the string? Using printf, you still need to put specifiers in somewhere.
…
6
votes
Is it bad practice to use LINQ to loop over and perform actions rather than just select data?
List<T> has a ForEach() method that is designed for this.
…
1
vote
Pair-wise iteration in C# or sliding window enumerator
C# 3.0 solution (sorry:)
public static IEnumerable<IEnumerable<T>> Tuples<T>(this IEnumerable<T> sequence, int nTuple)
{
if(nTuple <= 0) throw new Arg …
