当前位置:首页 > 开发 > C# > 正文内容

C#解析Torrent获取磁力链

C#4年前 (2022-10-24)

NuGet添加 MonoTorrent

using MonoTorrent;
string file = @"D:\下载\5.torrent";
Torrent torrent = Torrent.Load(file);
Console.WriteLine("magnet:?xt=urn:btih:" + torrent.InfoHash.ToHex());
Console.ReadLine();
magnet:?xt=urn:btih:EA6380C88E8B58096B0100E6F0239800BF968848



转载请注明出处。

本文链接:http://pythonopen.com/?id=227

相关文章

C# 颜色算法

RGB转Dec    /// <summary>...

C# [OnPaint]和[OnPaintBackground]的区别

OnPaint和OnPaintBackground的主要功能区别OnPaint:OnPaint方法主...

C# ref 和out

ref关键字概念:ref是 C# 中的一个关键字,用于按引用传递参数。当在方法调用中使用ref关键字...

C# Control防闪烁

SetStyle(ControlStyles.AllPaintingInWmPaint |...

C# i++和++i的区别

核心区别操作顺序            ...