InterviewSolution
| 1. |
What is CTS |
|
Answer» The Common Type System defines how types are DECLARED, USED, and managed in the common LANGUAGE runtime, and is also an IMPORTANT part of the runtime's support for cross-language integration. Here we have several languages and each and every language has its own data type and 1 language data type cannot be understandable by other languages. CTS is a specification created by Microsoft and included in the European COMPUTER Manufacturer‘s Association standard. It has certain standard features for implementing the .NET framework. There are different types which CTS Support:
Operations on variables of a value type do not affect any other variable, whereas, operations on variables of a reference type can affect the same object referred to by another variable. |
|