Silk.NETS
Silk.NET3y ago
Aqua

hm. been looking and seems like ```cs public class Thing { void* whatever; public Thing(byte[]

hm. been looking and seems like
public class Thing
{
  void* whatever;

  public Thing(byte[] stuff)
  {
    fixed (void* ptr = stuff)
      whatever = ptr;
  }
}

isn't valid
i've had no problems with that
but i guess i've been lucky?
so if that's not valid
wtf are you supposed to do instead
or have i just confused myself
Was this page helpful?