You can get the information of type of the any object by calling the GetType method of System.Object. Because every type in .Net inherits directly or indirectly from System.Object, every object will have access to the GetType method.
GetType returns an instance of a Type object, which can be queried to learn all about the type of the original object.