当前位置: 首页>>代码示例>>C#>>正文


C# IAttribute.GetType方法代码示例

本文整理汇总了C#中IAttribute.GetType方法的典型用法代码示例。如果您正苦于以下问题:C# IAttribute.GetType方法的具体用法?C# IAttribute.GetType怎么用?C# IAttribute.GetType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IAttribute的用法示例。


在下文中一共展示了IAttribute.GetType方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ToString

 public static string ToString(IAttribute attribute)
 {
     var builder = new StringBuilder();
     var attributeType = attribute.GetType();
     builder.Append("  - ").Append(attributeType.Name).AppendLine();
     foreach (var eachProperty in attributeType.GetProperties())
     {
         var propertyValue = eachProperty.GetValue(attribute);
         builder.Append("    - ").Append(eachProperty.Name).Append('=').Append(propertyValue).AppendLine();
     }
     return builder.ToString();
 }
开发者ID:ktj007,项目名称:mmo,代码行数:12,代码来源:AttributeHelper.cs

示例2: Assign

        public static void Assign(this IAttribute attribute, IAttribute other)
        {
            Debug.Assert(attribute != null);
            if (other == null)
                return;

            Debug.Assert(attribute.GetType() == other.GetType());
            foreach (var eachProperty in attribute.GetType().GetProperties())
            {
                eachProperty.SetValue(attribute, eachProperty.GetValue(other));
            }
        }
开发者ID:ktj007,项目名称:mmo,代码行数:12,代码来源:AttributeExtension.cs

示例3: ApplyMaxConstraints

        private static object ApplyMaxConstraints(ConstraintsAttribute constraints, object newValue, IAttribute attribute, PropertyInfo propertyInfo)
        {
            switch (constraints.ValueType)
            {
                case ConstraintsValueType.IntValue:
                    return Math.Min(newValue.As<int>(), constraints.IntValue);

                case ConstraintsValueType.FloatValue:
                    return Math.Min(newValue.As<float>(), constraints.FloatValue);

                case ConstraintsValueType.Reference:
                    {
                        var attributeType = attribute.GetType();
                        var referenceProperty = attributeType.GetProperty(constraints.FieldName.ToCamelCase());
                        return Math.Min(newValue.As<float>(), referenceProperty.GetValue(attribute).As<float>());
                    }
            }
            throw new InvalidOperationException("invalid value-type for max constraints: " + constraints.ValueType);
        }
开发者ID:ktj007,项目名称:mmo,代码行数:19,代码来源:ConstraintsHelper.cs

示例4: ApplyConstraints

        public static object ApplyConstraints(IAttribute attribute, string propertyName, object newValue)
        {
            Debug.Assert(attribute != null);
            var attributeType = attribute.GetType();
            var propertyInfo = attributeType.GetProperty(propertyName);
            Debug.Assert(propertyInfo != null);

            foreach (var constraints in propertyInfo.GetCustomAttributes(typeof(ConstraintsAttribute), false).OfType<ConstraintsAttribute>())
            {
                switch (constraints.Type)
                {
                    case ConstraintsType.Min:
                        newValue = ApplyMinConstraints(constraints, newValue, attribute, propertyInfo);
                        break;

                    case ConstraintsType.Max:
                        newValue = ApplyMaxConstraints(constraints, newValue, attribute, propertyInfo);
                        break;
                }
            }
            return Convert.ChangeType(newValue, propertyInfo.PropertyType);
        }
开发者ID:ktj007,项目名称:mmo,代码行数:22,代码来源:ConstraintsHelper.cs

示例5: GetTypeName

 public static string GetTypeName(IAttribute attribute)
 {
     return GetTypeName(attribute.GetType());
 }
开发者ID:ktj007,项目名称:mmo,代码行数:4,代码来源:AttributeHelper.cs


注:本文中的IAttribute.GetType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。