Tagged Questions

4
votes
3answers
228 views

Check if an object is a generic collection

We are dynamically building some SQL statements and we are utilizing the IN operator. If our value is a collection of values such that: List<Guid> guids = new List<Guid>() I want to be ...
3
votes
5answers
403 views

Should I Overload == Operator?

How does the == operator really function in C#? If it used to compare objects of class A, will it try to match all of A's properties, or will it look for pointers to the same memory location (or maybe ...
3
votes
3answers
7k views

C#: Oracle Data Type Equivalence with OracleDbType

Situation: I am creating an app in C# that uses Oracle.DataAccess.Client (11g) to do certain operations on a Oracle database with stored procedures. I am aware that there is a certain enum ...
-1
votes
1answer
50 views

Equivalence of String and string in C# test [closed]

Possible Duplicate: String vs string in C# I have a test in C# code I'm reading: if (variable is string) I am wondering if this is strictly equivalent to: if (variable is String) or ...