コード例 #1
0
        public void 属性关键字()
        {
            PropertyKeyword propertyKeyword = PropertyKeyword.Abstract;
            var             output          = EnumCache.GetPropertyKeyword(propertyKeyword);

            Assert.Equal("abstract", output);

            output = EnumCache.GetValue(propertyKeyword);
            Assert.Equal("abstract", output);
        }