X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem%2FRuntimeFieldHandle.cs;fp=mcs%2Fclass%2Fcorlib%2FSystem%2FRuntimeFieldHandle.cs;h=8c552b66a3c405cca6d9a6b1c82e202fed3b5170;hb=9a018413829b4682d6273758e013a3d0fefbea9f;hp=8901fa36a414a8f77dd9e1444645b5da01a512ef;hpb=939a8f904bfb87091d7a6ecf136aa3d88b4c2548;p=mono.git diff --git a/mcs/class/corlib/System/RuntimeFieldHandle.cs b/mcs/class/corlib/System/RuntimeFieldHandle.cs index 8901fa36a41..8c552b66a3c 100644 --- a/mcs/class/corlib/System/RuntimeFieldHandle.cs +++ b/mcs/class/corlib/System/RuntimeFieldHandle.cs @@ -121,9 +121,7 @@ namespace System throw new NotImplementedException ("GetValueDirect"); } - unsafe internal static void SetValueDirect (RtFieldInfo field, RuntimeType fieldType, void* pTypedRef, Object value, RuntimeType contextType) - { - throw new NotImplementedException ("SetValueDirect"); - } + [MethodImplAttribute(MethodImplOptions.InternalCall)] + static unsafe extern internal void SetValueDirect (RtFieldInfo field, RuntimeType fieldType, void* pTypedRef, Object value, RuntimeType contextType); } }