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

            TSetReadWriteMarshaler <T> .ToNativeInternal(nativeBuffer, arrayIndex, value, ref helper, elementToNative);
        }
예제 #2
0
파일: TSet.cs 프로젝트: yimengfan/USharp
 public void ToNative(IntPtr nativeBuffer, int arrayIndex, IntPtr prop, IEnumerable <T> value)
 {
     helper.Update(property);
     TSetReadWriteMarshaler <T> .ToNativeInternal(nativeBuffer, arrayIndex, value, ref helper, elementToNative);
 }