Search Results

3
votes

Casting vs Converting an object toString, when object really is a string

Basically in your case it is better to leave type cast because .ToString() may hide bugs. For example, your data base schema changed and name is no longer of string type but with .ToString() your c …
0
votes

Explicit Casting Problem

You can also consider Simulated Covariance for .NET Generics by Krzysztof Cwalina …
0
votes

When to use run-time type information?

You can refer to More Effective C# for a case where run-time type checking is OK. Item 3. Specialize Generic Algorithms Using Runtime Type Checking You can eas …