コード例 #1
0
ファイル: TypeBuilderBase.cs プロジェクト: Xtremrules/dot42
        private static int GetOrder(CustomAttribute customAttribute, int defaultValue)
        {
            var orderProperty = customAttribute.GetIntProperty(DataAttributeConstants.Order);
            if (orderProperty.HasValue)
            {
                return orderProperty.Value;
            }

            return defaultValue;
        }