2
votes
5answers
198 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 memor …
1
vote
3answers
237 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 c …
4
votes
5answers
355 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 declarat …
1
vote
3answers
287 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 …
