111,098
社区成员




static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
byte[] buff = new byte[0];
new System.IO.MemoryStream().ToArray();
}
public static void ToBytes()
{
System.IO.FileStream fs = new System.IO.FileStream(null,System.IO.FileMode.Open,System.IO.FileAccess.Read);
}
public static void GZipDecompress()
{
System.IO.Compression.GZipStream compress=new System.IO.Compression.GZipStream(null,System.IO.Compression.CompressionMode.Decompress);
}
}