• 大小: 0.02M
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: C#  种子  

资源简介


资源截图

代码片段和文件信息

//
// bittorrent File Creator
// Author: http://www.cnblogs.com/thomasnet
// Email: cnblogreply@gmail.com
// License: GPL v3 http://www.gnu.org/copyleft/gpl.html
//

using System;
using System.Collections.Generic;
using System.Text;

namespace BenCode
{
    interface IBenCode
    {
        byte[] ToByteArray();
    }

    abstract class BenByteString : IBenCode
    {
        abstract protected byte[] GetByteArray();
        public byte[] ToByteArray()
        {
            List byteList = new List();
            byte[] byteContent = GetByteArray();
            string sizeHeader = string.Format(“{0}:“ byteContent.Length);
            byteList.AddRange(Encoding.UTF8.GetBytes(sizeHeader));
            byteList.AddRange(byteContent);
            return

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2007-11-07 10:05  BtCreator\
     文件        3850  2007-11-07 09:50  BtCreator\BenCode.cs
     文件        2077  2007-11-07 08:32  BtCreator\BtCreator.csproj
     文件         906  2007-11-07 08:29  BtCreator\BtCreator.sln
     文件       35147  2007-11-07 10:04  BtCreator\gpl-3.0.txt
     文件        4119  2007-11-07 09:54  BtCreator\Program.cs
     文件        8171  2007-11-07 09:50  BtCreator\TorrentFileCreator.cs
     文件        2251  2007-11-07 09:50  BtCreator\Utility.cs

评论

共有 条评论