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


C# IInterningProvider.InternList方法代码示例

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


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

示例1: ApplyInterningProvider

		public override void ApplyInterningProvider(IInterningProvider provider)
		{
			base.ApplyInterningProvider(provider);
			if (provider != null) {
				returnTypeAttributes = provider.InternList(returnTypeAttributes);
				typeParameters = provider.InternList(typeParameters);
				parameters = provider.InternList(parameters);
			}
		}
开发者ID:Gobiner,项目名称:ILSpy,代码行数:9,代码来源:DefaultUnresolvedMethod.cs

示例2: ApplyInterningProvider

		public override void ApplyInterningProvider(IInterningProvider provider)
		{
			base.ApplyInterningProvider(provider);
			getter = provider.Intern(getter);
			setter = provider.Intern(setter);
			parameters = provider.InternList(parameters);
		}
开发者ID:Gobiner,项目名称:ILSpy,代码行数:7,代码来源:DefaultUnresolvedProperty.cs

示例3: ApplyInterningProvider

		public override void ApplyInterningProvider(IInterningProvider provider)
		{
			base.ApplyInterningProvider(provider);
			returnType = provider.Intern(returnType);
			interfaceImplementations = provider.InternList(interfaceImplementations);
		}
开发者ID:adisik,项目名称:simple-assembly-explorer,代码行数:6,代码来源:AbstractUnresolvedMember.cs

示例4:

		void ISupportsInterning.PrepareForInterning(IInterningProvider provider)
		{
			elementType = provider.Intern(elementType);
			arrayElements = provider.InternList(arrayElements);
		}
开发者ID:sbeparey,项目名称:ILSpy,代码行数:5,代码来源:ConstantValues.cs

示例5:

		void ISupportsInterning.PrepareForInterning(IInterningProvider provider)
		{
			typeReference = provider.Intern(typeReference);
			name = provider.Intern(name);
			parameterTypes = provider.InternList(parameterTypes);
		}
开发者ID:KAW0,项目名称:Alter-Native,代码行数:6,代码来源:DefaultMemberReference.cs

示例6: ApplyInterningProvider

		public virtual void ApplyInterningProvider(IInterningProvider provider)
		{
			if (provider == null)
				throw new ArgumentNullException("provider");
			ThrowIfFrozen();
			name = provider.Intern(name);
			attributes = provider.InternList(attributes);
			if (rareFields != null)
				rareFields.ApplyInterningProvider(provider);
		}
开发者ID:adisik,项目名称:simple-assembly-explorer,代码行数:10,代码来源:AbstractUnresolvedEntity.cs

示例7:

		void ISupportsInterning.PrepareForInterning(IInterningProvider provider)
		{
			name = provider.Intern(name);
			type = provider.Intern(type);
			attributes = provider.InternList(attributes);
			defaultValue = provider.Intern(defaultValue);
		}
开发者ID:yayanyang,项目名称:monodevelop,代码行数:7,代码来源:DefaultParameter.cs

示例8:

		void ISupportsInterning.PrepareForInterning(IInterningProvider provider)
		{
			if (!this.IsFrozen) {
				attributeType = provider.Intern(attributeType);
				constructorParameterTypes = provider.InternList(constructorParameterTypes);
				positionalArguments = provider.InternList(positionalArguments);
				if (namedArguments != null) {
					for (int i = 0; i < namedArguments.Count; i++) {
						namedArguments[i] = new KeyValuePair<IMemberReference, IConstantValue>(
							provider.Intern(namedArguments[i].Key),
							provider.Intern(namedArguments[i].Value)
						);
					}
				}
				Freeze();
			}
		}
开发者ID:nylen,项目名称:SharpDevelop,代码行数:17,代码来源:DefaultUnresolvedAttribute.cs

示例9:

		void ISupportsInterning.PrepareForInterning(IInterningProvider provider)
		{
			attributeType = provider.Intern(attributeType);
			if (constructorParameterTypes != null) {
				for (int i = 0; i < constructorParameterTypes.Length; i++) {
					constructorParameterTypes[i] = provider.Intern(constructorParameterTypes[i]);
				}
			}
			positionalArguments = provider.InternList(positionalArguments);
		}
开发者ID:constructor-igor,项目名称:cudafy,代码行数:10,代码来源:DefaultAttribute.cs

示例10:

 void ISupportsInterning.PrepareForInterning(IInterningProvider provider)
 {
     attributes = provider.InternList(attributes);
 }
开发者ID:richardschneider,项目名称:ILSpy,代码行数:4,代码来源:DefaultAccessor.cs

示例11:

		void ISupportsInterning.PrepareForInterning(IInterningProvider provider)
		{
			constraints = provider.InternList(constraints);
			attributes = provider.InternList(attributes);
		}
开发者ID:constructor-igor,项目名称:cudafy,代码行数:5,代码来源:DefaultTypeParameter.cs

示例12: ApplyInterningProvider

		public virtual void ApplyInterningProvider(IInterningProvider provider)
		{
			if (provider != null) {
				returnType = provider.Intern(returnType);
				attributes = provider.InternList(attributes);
				interfaceImplementations = provider.InternList(interfaceImplementations);
				name = provider.Intern(name);
			}
		}
开发者ID:JustasB,项目名称:cudafy,代码行数:9,代码来源:AbstractMember.cs

示例13:

		void ISupportsInterning.PrepareForInterning(IInterningProvider provider)
		{
			if (!this.IsFrozen) {
				attributes = provider.InternList(attributes);
				returnTypeAttributes = provider.InternList(returnTypeAttributes);
			}
		}
开发者ID:nylen,项目名称:SharpDevelop,代码行数:7,代码来源:DefaultUnresolvedAccessor.cs

示例14:

 void ISupportsInterning.PrepareForInterning(IInterningProvider provider)
 {
     attributeType = provider.Intern(attributeType);
     positionalArguments = provider.InternList(positionalArguments);
 }
开发者ID:richardschneider,项目名称:ILSpy,代码行数:5,代码来源:DefaultAttribute.cs


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