gpt4 book ai didi

C# 等效于 VB DLL 函数声明 (InternetSetOption)?

转载 作者:可可西里 更新时间:2023-11-01 09:00:33 24 4
gpt4 key购买 nike

此 VB 代码的 C# 等效项是什么?

Private Declare Auto Function InternetSetOption Lib "wininet.dll" (ByVal hInternet As IntPtr, ByVal dwOption As Integer, ByVal lpBuffer As IntPtr, ByVal lpdwBufferLength As Integer) As Boolean

最佳答案

Here it is :

[DllImport("wininet.dll", SetLastError = true, CharSet = CharSet.Auto)]
public static extern bool InternetSetOption(
IntPtr hInternet,
int dwOption,
IntPtr lpBuffer,
int dwBufferLength
);

关于C# 等效于 VB DLL 函数声明 (InternetSetOption)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5946486/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com