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