示例#1
0
文件: Field.cs 项目: JLChnToZ/Katana
        public void Clear()
        {
            switch (fieldType)
            {
            case FieldType.Object:
                HashValue.Clear();
                break;

            case FieldType.Array:
                ListValue.Clear();
                break;

            default:
                throw new NotSupportedException();
            }
        }