In order that two language communicate smoothly CLR has CTS (Common Type System).In VB you have “Integer” and in C++ we have “long” these datatypes are not compatible so the interfacing between them is very complicated. In order to able that two different languages can communicate Microsoft introduced Common Type System.
Code Verification
This ensures proper code execution and type safety while
the code runs. It prevents the source code to perform illegal operation such as accessing invalid memory locations etc.
Posted in Uncategorized
Leave a comment
Code Access Security
CAS grants rights to program depending on the security
configuration of the machine. Example the program has rights to edit or create a new file but the security configuration of machine does not allow the program to delete a file. CAS will take care that the code runs under the environment of machines security configuration.
Posted in Definitions
Leave a comment