public XLUnicodeStringMin2(IStreamReader reader) { this.cch = reader.ReadUInt16(); //st MUST exist if and only if cch is greater than zero. if (this.cch > 0) { this.st = new XLUnicodeStringNoCch(reader, this.cch); } }
public PictFmlaEmbedInfo(IStreamReader reader) { this.ttb = reader.ReadByte(); this.cbClass = reader.ReadByte(); reader.ReadByte(); if (this.cbClass > 0) { this.strClass = new XLUnicodeStringNoCch(reader, this.cbClass); } }