예제 #1
0
 // Note: Allocates unmanaged heap memory; should only be used with constants
 public static FLDictKey FLDictKey_Init(string str, bool cachePointers)
 {
     return(NativeRaw.FLDictKey_Init(FLSlice.Constant(str), cachePointers));
 }
 public FLDictKey FLDictKey_Init(FLSlice @string, bool cachePointers) => NativeRaw.FLDictKey_Init(@string, cachePointers);
 // Note: Allocates unmanaged heap memory; should only be used with constants
 public static FLDictKey FLDictKey_Init(string str)
 {
     return(NativeRaw.FLDictKey_Init(FLSlice.Constant(str)));
 }
예제 #4
0
 public FLDictKey FLDictKey_Init(FLSlice @string) => NativeRaw.FLDictKey_Init(@string);