資源簡介
代碼片段和文件信息
//
//?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
評論
共有 條評論