compresseditem.cs
来自「PDF文件格式解析库源代码」· CS 代码 · 共 33 行
CS
33 行
using System;
using System.Collections.Generic;
using System.Text;
namespace QiHe.CodeLib.Compress
{
public abstract class CompressedItem
{
}
public class LiteralByte : CompressedItem
{
public byte Value;
public LiteralByte(byte value)
{
Value = value;
}
}
public class LengthDistancePair : CompressedItem
{
public int Length;
public int Distance;
public LengthDistancePair(int length, int distance)
{
Length = length;
Distance = distance;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?