What is CTS in .Net Framework ?
CTS stands for Common Type System. In the world of programming, Type of anything plays the key role that is directly proportioned to the memory. Types like int, string, array or others take its own memory when the program executes. So this becomes more important to pick any data type smartly so that unnecessary memory uses can be reduced. So when any programme run/execute (by CLR) the CTS ensure that what will be the type and its memory allocation algorithm should follow in order to execute any program efficiently. CTS play the key role for interoperability of two or more than two languages. What is Reflection in .Net Framework ?