I know int is value type. But I have not understand why it allow to use new key world.
Example:- int a = new int();
If I use new then it will be reference type. right?
So why int is not reference type in that case.
Also int is class so why it is not reference type?
Can one tell me and make me current?