Possible Duplicate:
c#: difference between “System.Object” and “object”
What is the diferrence between object and Object
Possible Duplicate:
c#: difference between “System.Object” and “object”
What is the diferrence between object and Object
There is no differrence.
The object type is an alias for Object in the .NET Framework.
object
in C# is an alias for the .NET class System.Object
. You can use them interchangeably in C# code.
There are CLR types, as System.Object
System.Int32
etc. These are common for all .Net languages some of these types have C# aliases, that is, there are keywords in C# like object
, string
, int
etc. These are specific to C# but are treated exactly as the CLR analogs