English 中文(简体)
• 如何获得快车动力
原标题:How can i get the tcp dynamicport

我怎么能用C# .Net Core 6获得tcp动态港?

同指挥结果一样:

"netsh int ipv4 show dynamicport tcp" in windows

C:UsersXXX>netsh int ipv4 show dynamicport tcp

Protocol tcp dynamic port range
---------------------------------
Startup port : 49152
Number of ports : 16384

需要“港口”和“港口数量”的价值

我检查了Microsoft的相关材料,发现没有提供有关的APIC和表格。

最佳回答
var process = new Process()
{
    StartInfo = new ProcessStartInfo
    {
        FileName = "netsh",
        Arguments = "int ipv4 show dynamicport tcp",
        RedirectStandardOutput = true,
        UseShellExecute = false,
        CreateNoWindow = true,
    }
};

process.Start();

该守则使用System.Diagnostics称号空间来执行“netsh int ipv4显示动态port tcp的指令,并将产出印刷到索尔。

See this github post for the fullcode

希望会有助于

问题回答

我确实不相信你能够,我认为你必须直接打电话净额,因为只有窗户才能工作,但如果选择,或许可以看https://github.com/rpetz/SharpNetSH。 并将其扩大到你们的需要?





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签