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 ?
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 ?
No difference.
object is a synomym of System.Object
It is there to allow old users to not get totally confused when they moved from an older system to this.
Object instead of object are Java programmers :)None.
The object type is an alias for System.Object in the .NET Framework. You can assign values of any type to variables of type object.
http://msdn.microsoft.com/en-us/library/9kkx3h3c%28VS.71%29.aspx