Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between Object and object [duplicate]

Tags:

c#

Possible Duplicate:
c#: difference between “System.Object” and “object”

Hello,

In C# there are Object and object types. They seem to have the same functionnality, so what is the difference between the two ?

like image 910
slaphappy Avatar asked Jun 18 '10 14:06

slaphappy


People also ask

What is the difference between object and object?

Object". There is no difference whatsoever.

What is duplicate object in Java?

lang. String objects a and b are duplicates when a != b && a. equals(b) . In other words, there are two (or more) separate strings with the same contents in the JVM memory.

What do you mean by duplicating of objects?

Duplicating an object creates a copy of it and adds it to the bottom of the object list in the Objects palette. When duplicating, you can choose to copy just the object or both the object and its associated shader network.

What is the difference between duplicate and copy?

Duplicate creates a copy of an item in the same location as the original. Copying (or “Copy To”) creates a copy of an item in a different location that you specify.


1 Answers

There is none. C# provides synonyms for the primitives defined by the CLR. System.String -> string, System.Int64 -> long, System.Object -> object, etc.

like image 137
Matt Greer Avatar answered Oct 05 '22 23:10

Matt Greer