예제 #1
0
파일: TMap.cs 프로젝트: yimengfan/USharp
        public static void ToNative(IntPtr nativeBuffer, int arrayIndex, IntPtr prop, IDictionary <TKey, TValue> value)
        {
            FScriptMapHelper helper = new FScriptMapHelper(prop);

            TMapReadWriteMarshaler <TKey, TValue> .ToNativeInternal(
                nativeBuffer, arrayIndex, value, ref helper, keyToNative, valueToNative);
        }
예제 #2
0
파일: TMap.cs 프로젝트: yimengfan/USharp
 public void ToNative(IntPtr nativeBuffer, int arrayIndex, IntPtr prop, IDictionary <TKey, TValue> value)
 {
     helper.Update(property);
     TMapReadWriteMarshaler <TKey, TValue> .ToNativeInternal(nativeBuffer, arrayIndex, value, ref helper, keyToNative, valueToNative);
 }