8 references to UnsafeGetValue
mscorlib (8)
system\attribute.cs (3)
852thisResult = ((RtFieldInfo)thisFields[i]).UnsafeGetValue(thisObj); 853thatResult = ((RtFieldInfo)thisFields[i]).UnsafeGetValue(obj); 922Object fieldValue = ((RtFieldInfo)fields[i]).UnsafeGetValue(this);
system\reflection\fieldinfo.cs (1)
664return UnsafeGetValue(obj);
system\runtime\serialization\formatterservices.cs (1)
411data[i] = rfi.UnsafeGetValue(obj);
system\runtime\serialization\serializationfieldinfo.cs (1)
102return field.UnsafeGetValue(obj);
system\valuetype.cs (2)
49thisResult = ((RtFieldInfo)thisFields[i]).UnsafeGetValue(thisObj); 50thatResult = ((RtFieldInfo)thisFields[i]).UnsafeGetValue(obj);