I'm trying to create a binding for an iOS library.
When creating a native app with this library, it requires to include a .h header file which declares a global ApplicationKey variable like this:
extern const unsigned char ApplicationKey[];
and you are supposed to implement it
const unsigned char ApplicationKey[] = {0x11, ... };
Now, when creating the Xamarin binding for this library, the header file is mapped by Objective Sharpie to
partial interface Constants
{
// extern const unsigned char [] ApplicationKey;
[Field ("ApplicationKey")]
byte[] ApplicationKey { get; }
}
How to change it to be able to set ApplicationKey from C# code?