DuraSoft
.NET-37
Quiz Time
•What does CLR provide?
•
•Generation count is the number of?
•
•What’s called on an object when Garbage Collected?
•
•What is the source code compiled into in .NET?
•
•Code executed in CLR is called _________________?
•
•To use pointers in C#, you mark the code as ________?
•
•Before assigning a pointer to an object, you first __________?
•
•You will not pin objects that are on the ___________?
•
•Why do you have to pin the objects?
•
•Is unsafe code classified as unmanaged code as well?
Memory MGMT, Garbage Coll., Security
GC sweeps the object has seen
Finalize
MSIL
Managed Code
unsafe
pin it (fixed)
stack
CLR moves them around
No