H
honestman
Unregistered / Unconfirmed
GUEST, unregistred user!
调用API的时候,如果结构要设置为NULL,那在C#中应该如何实现啊?
例如:
HANDLE CreateEvent(
LPSECURITY_ATTRIBUTES lpEventAttributes,
BOOL bManualReset,
BOOL bInitialState,
LPTSTR lpName
);
Parameters
lpEventAttributes
Ignored. Must be NULL.
那在C#中应该如何设置啊?
例如:
HANDLE CreateEvent(
LPSECURITY_ATTRIBUTES lpEventAttributes,
BOOL bManualReset,
BOOL bInitialState,
LPTSTR lpName
);
Parameters
lpEventAttributes
Ignored. Must be NULL.
那在C#中应该如何设置啊?