Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
216 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 ...
4
votes
5answers
464 views

Why did the language designers of C do type equivalance like this?

I'm learning C and I'm reading about type equivalence. I'm curious, does anyone have an opinion why they used structural equivalence for arrays and pointers but they used declaration equivalence for ...
3
votes
5answers
396 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 ...
2
votes
2answers
605 views

What are the arguments both for and against both name equivalence and structural equivalence?

In language design circles there used to be a long-running debate over whether languages should use structural equivalence or name equivalence. Languages like ALGOL or ML or Modula-3 used structural ...
1
vote
1answer
82 views

Can't get Type Equivalence to work for the Google Earth Plugin

I have a WinForms C# application that embeds the Google Earth(GE) Plugin. This is done via COM Interop, by adding a reference to the Google Earth Plugin. What we'd like to be able to do is support ...
1
vote
2answers
465 views

structural equivalence vs name equivalence

I can't seem to grasp exactly what name equivalence is. I'm pretty sure I have structural down though. An example my professor gave was this: Type TI=integer Type TTI=TI a=integer b=TTI f= ref ...
1
vote
3answers
736 views

Are two int arrays of different size “type equivalent” in C?

I'm reading about Type Equivalence in my Programming Languages class and I've come across a situation in C I'm unsure about. It describes C's "Type Equivalence" as: C uses a form of type ...
-1
votes
1answer
48 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 ...
-2
votes
2answers
363 views

Name equivalence question

Suppose I have: int a; int b; Are the variables a and b name equivalent (more specifically, since primitive types don't have type names, can they be considered name equivalent)? Thanks.