点击或拖拽改变大小

Internal 构造函数

Base constructor for most libvlc objects. Will perform native calls.

命名空间:  LibVLCSharp.Shared
程序集:  CPF.Vlc (在 CPF.Vlc.dll 中) 版本:0.8.8.5
语法
C#
protected Internal(
	Func<IntPtr> create,
	Action<IntPtr> release
)

参数

create
类型:SystemFuncIntPtr
A create function that will return a pointer to the instance in native code
release
类型:SystemActionIntPtr
A release Action that takes the native pointer to that C# instance's native code representation and performs the release call in native code. It will be called once when the C# instance gets disposed.
参见