CLS:Comman Language Specification. it is Subset of CTS. CTS:Comman Type systemes. it can have different Types of Datatypes. it can be supports two types. 1)Value Type. 2)Refference type. 1)Value type: It can Allocated Memory in Stack, Ex:int i =10; I value goes to stored in stack memory,int,float,struct etc. 2)Refference type:It can Allocated Memory in Heap . ex:class,object, delegate,interface,string etc.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
CTS:Comman Type systemes. it can have different Types of Datatypes. it can be supports two types.
1)Value Type.
2)Refference type.
1)Value type: It can Allocated Memory in Stack,
Ex:int i =10;
I value goes to stored in stack memory,int,float,struct etc.
2)Refference type:It can Allocated Memory in Heap .
ex:class,object, delegate,interface,string etc.