What are the advantages of replacing (int)reader[0] with reader.GetInt32(0)? I'm sure such casting functions are there for a reason, but other than it feeling more aesthetically pleasing to avoid the cast myself, I'm not sure what those reasons are.
|
1
|
|
||
|
|
|
|
In code....
In IL
So, the IL is different, but I doubt that there is any noticeable difference between them. Maybe after a million iterations you will see the difference, but not likely. |
||||||
|
|
|
reader[0] returns an System.Object, (int)reader[0] is actually doing a cast from Object to Int32. If you call GetXXX(0) methods, no conversions are performed. Therefore, the data retrieved from the stream must already be the type the method specified. If the type of data retrieved doesn't match or the column has DBNull, it throws an InvalidCastException. |
||
|
|
|
|
The former can also accept the column name as a string rather than an index, and will attempt to cast the column value to an int. The latter only accepts the index and no casting will be performed. |
||
|
|
