public static FLDictKey FLDictKey_InitWithSharedKeys(byte[] @string, FLSharedKeys *sharedKeys) { fixed(byte *@string_ = @string) { return(NativeRaw.FLDictKey_InitWithSharedKeys(new FLSlice(@string_, (ulong)@string.Length), sharedKeys)); } }
// 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);