Пример #1
0
		// Constructor.
		public CP932Decoder(JISConvert convert)
			: base (null)
		{
			this.convert = convert;
		}
Пример #2
0
		// Constructor.
		public CP932Decoder(JISConvert convert)
				{
					this.convert = convert;
					this.lastByte = 0;
				}
Пример #3
0
		// Constructor.
		public CP51932Decoder(JISConvert convert)
				{
					this.convert = convert;
					this.lastByte1 = 0;
					this.lastByte2 = 0;
				}
Пример #4
0
	// Constructor.
	public CP932() : base(SHIFTJIS_CODE_PAGE)
			{
				// Load the JIS conversion tables.
				convert = JISConvert.Convert;
			}
Пример #5
0
	// Constructor.
	public CP51932() : base(EUCJP_CODE_PAGE)
			{
				// Load the JIS conversion tables.
				convert = JISConvert.Convert;
			}