Merge pull request #1659 from alexanderkyte/stringbuilder-referencesource
[mono.git] / mcs / class / corlib / System / RuntimeFieldHandle.cs
index c6cd9f006f360935e5d96b40d2ef0d2f63425f16..8c552b66a3c405cca6d9a6b1c82e202fed3b5170 100644 (file)
@@ -115,5 +115,13 @@ namespace System
                {
                        SetValueInternal (field, obj, value);
                }
+
+               unsafe internal static Object GetValueDirect (RtFieldInfo field, RuntimeType fieldType, void *pTypedRef, RuntimeType contextType)
+               {
+                       throw new NotImplementedException ("GetValueDirect");
+               }
+
+               [MethodImplAttribute(MethodImplOptions.InternalCall)]
+               static unsafe extern internal void SetValueDirect (RtFieldInfo field, RuntimeType fieldType, void* pTypedRef, Object value, RuntimeType contextType);
        }
 }