public void ReleaseInstance(VlcInstance instance) { if (instance == IntPtr.Zero) { return; } GetInteropDelegate <ReleaseInstance>().Invoke(instance); }
public void CreateNewInstance(string[] args) { if (args == null) { args = new string[0]; } myVlcInstance = new VlcInstance(this, GetInteropDelegate <CreateNewInstance>().Invoke(args.Length, args)); }