Palle Technologies
what is a primitive type in C#
By Palle Technologies in C# on Jan 15 2014
  • Pankaj  Kumar Choudhary
    May, 2015 25

    all data types are treat as Primitive data types...........

    • 1
  • Palle Technologies
    Jan, 2014 15

    primitive type is a data type in c# language which is understandable by the C# compiler . in C# int , string , float etc... data types are considered as primitive types . during compilation usually primitive types are converted into MSIL types.
    Ex: if you write int x=20 ; in C# language during compilation the code is converted as shown below .
    Int32 x=20;
    Note: Int32 is MSIL equivalent for int primitive type . question copied from below weblink .
    c# interview questions and answers

    • 1
  • Princy Gupta
    May, 2014 8

    Check the below links http://msdn.microsoft.com/en-us/library/aa711900(v=vs.71).aspx http://mylazycode.com/primitive-data-types/

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS