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


C# PropertyDefinition.IsIndexer方法代码示例

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


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

示例1: FormatPropertyName

        public override string FormatPropertyName(PropertyDefinition property, bool? isIndexer)
        {
            if (property == null)
                throw new ArgumentNullException("property");

            if (!isIndexer.HasValue)
            {
                isIndexer = property.IsIndexer();
            }
            if (isIndexer.Value)
            {
                var buffer = new System.Text.StringBuilder();
                var accessor = property.GetMethod ?? property.SetMethod;
                if (accessor.HasOverrides)
                {
                    var declaringType = accessor.Overrides.First().DeclaringType;
                    buffer.Append(TypeToString(declaringType, includeNamespace: true));
                    buffer.Append(@".");
                }
                buffer.Append(@"this[");
                bool addSeparator = false;
                foreach (var p in property.Parameters)
                {
                    if (addSeparator)
                        buffer.Append(@", ");
                    else
                        addSeparator = true;
                    buffer.Append(TypeToString(p.ParameterType, includeNamespace: true));
                }
                buffer.Append(@"]");
                return buffer.ToString();
            }
            else
                return property.Name;
        }
开发者ID:HearthSim,项目名称:extract-scripts,代码行数:35,代码来源:decompile.cs

示例2: PropertyTreeNode

        public PropertyTreeNode(PropertyDefinition property)
        {
            if (property == null)
                throw new ArgumentNullException("property");
            this.property = property;
            // using (LoadedAssembly.DisableAssemblyLoad())
            {
                this.isIndexer = property.IsIndexer();
            }

            if (property.GetMethod != null)
                this.Children.Add(new MethodTreeNode(property.GetMethod));
            if (property.SetMethod != null)
                this.Children.Add(new MethodTreeNode(property.SetMethod));
            if (property.HasOtherMethods)
            {
                foreach (var m in property.OtherMethods)
                    this.Children.Add(new MethodTreeNode(m));
            }
        }
开发者ID:HearthSim,项目名称:extract-scripts,代码行数:20,代码来源:decompile.cs


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