Esempio n. 1
0
 public static FLDictKey FLDictKey_InitWithSharedKeys(byte[] @string, FLSharedKeys *sharedKeys)
 {
     fixed(byte *@string_ = @string)
     {
         return(NativeRaw.FLDictKey_InitWithSharedKeys(new FLSlice(@string_, (ulong)@string.Length), sharedKeys));
     }
 }
Esempio n. 2
0
 // Note: Allocates unmanaged heap memory; should only be used with constants
 public static FLDictKey FLDictKey_InitWithSharedKeys(string str, FLSharedKeys *sk)
 {
     return(NativeRaw.FLDictKey_InitWithSharedKeys(FLSlice.Constant(str), sk));
 }
 public FLDictKey FLDictKey_InitWithSharedKeys(FLSlice @string, FLSharedKeys *sharedKeys) => NativeRaw.FLDictKey_InitWithSharedKeys(@string, sharedKeys);