예제 #1
0
        public static BaseTagList Read(BinaryReaderFont reader)
        {
            BaseTagList value = new BaseTagList {
                baseTagCount = reader.ReadUInt16()
            };

            if (value.baseTagCount != 0)
            {
                value.baselineTags = reader.ReadTagArray(value.baseTagCount);
            }
            return(value);
        }