Atulya Panda
Write the difference between TypeOf and GetType?
By Atulya Panda in C# on Nov 26 2012
  • Manju lata Yadav
    Jul, 2014 9

    TypeOf:- is an operator to obtain a type known at compile-time (or at least a generic type parameter). The operand of typeof is always the name of a type or type parameter - never an expression with a value (e.g. a variable). Used to obtain the System.Type object for a type. A typeof expression takes the following form:System.Type type = typeof(int);GetType():-GetType() is a method you call on individual objects, to get the execution-time type of the object.Gets the Type of the current instance. The exact runtime type of the current instance. int i = 0; System.Type type = i.GetType();

    • 3
  • Manoj Kumar
    Nov, 2012 29

    typeof is used to get the type based on a class. That means if you use typeof with object, it will gives you error. You must pass class as parameter parameter. Where GetType is used to get the type based on an object (an instance of a class). Means GetType needs parameter of object rather than class name.

    • 1
  • Atulya Panda
    Nov, 2012 26

    Both of them produce the same information. The difference lies that from where the information is got. typeOf is used to get the type based on class. It will give an error if typeOf is used with the object. GetType is used get the type based on object, which states that geType needs parameter of object.

    • 1


Most Popular Job Functions


MOST LIKED QUESTIONS