• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# INamespace类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中INamespace的典型用法代码示例。如果您正苦于以下问题:C# INamespace类的具体用法?C# INamespace怎么用?C# INamespace使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



INamespace类属于命名空间,在下文中一共展示了INamespace类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: AddNamespace

        public static void AddNamespace(INamespace ns)
        {
            if (ns == null)
                throw new ArgumentNullException("ns");

            namespaces[ns.Identifier] = ns;
        }
开发者ID:bossaia,项目名称:alexandrialibrary,代码行数:7,代码来源:HtmlNodeExtensions.cs


示例2: ResolveQualifiedNameToSingle

		public static IEntity ResolveQualifiedNameToSingle(INamespace root, string qualifiedName)
		{
			IEntity current = root;
			foreach (string part in qualifiedName.Split('.'))
				current = ResolveSingle((INamespace) current, part);
			return current;
		}
开发者ID:0xb1dd1e,项目名称:boo,代码行数:7,代码来源:NamespaceAssert.cs


示例3: AddNamespace

		public void AddNamespace (INamespace ns)
		{
			if (usedNamespaces.Contains (ns.Name))
				return;
			usedNamespaces.Add (ns.Name);
			result.Add (Factory.CreateNamespaceCompletionData (ns));
		}
开发者ID:Gobiner,项目名称:ILSpy,代码行数:7,代码来源:CompletionDataWrapper.cs


示例4: CodeNamespace

 public CodeNamespace(CodeModelContext context, INamespace ns)
     : base(context)
 {
     this.ns = ns;
     this.InfoLocation = global::EnvDTE.vsCMInfoLocation.vsCMInfoLocationExternal;
     this.Language = context.CurrentProject.GetCodeModelLanguage();
 }
开发者ID:2594636985,项目名称:SharpDevelop,代码行数:7,代码来源:CodeNamespace.cs


示例5: ResolveCoalescingNamespaces

		public static bool ResolveCoalescingNamespaces(INamespace parent, INamespace namespaceToResolveAgainst, string name, EntityType typesToConsider, ICollection<IEntity> resultingSet)
		{
			var resolved = new Set<IEntity>();
			if (!namespaceToResolveAgainst.Resolve(resolved, name, typesToConsider))
				return false;
			return CoalesceResolved(resolved, parent, name, resultingSet);
		}
开发者ID:0xb1dd1e,项目名称:boo,代码行数:7,代码来源:Namespaces.cs


示例6: ResolveSingle

		public static IEntity ResolveSingle(INamespace root, string name)
		{
			var resolved = new List<IEntity>();
			Assert.IsTrue(root.Resolve(resolved, name, EntityType.Any), "Failed to resolve '{0}' against '{1}'", name, root);
			Assert.AreEqual(1, resolved.Count);
			return resolved[0];
		}
开发者ID:0xb1dd1e,项目名称:boo,代码行数:7,代码来源:NamespaceAssert.cs


示例7: FindReferences

		AstNode[] FindReferences(INamespace ns)
		{
			var result = new List<AstNode>();
			var searchScopes = findReferences.GetSearchScopes(ns);
			findReferences.FindReferencesInFile(searchScopes, unresolvedFile, syntaxTree, compilation,
			                                    (node, rr) => result.Add(node), CancellationToken.None);
			return result.OrderBy(n => n.StartLocation).ToArray();
		}
开发者ID:0xb1dd1e,项目名称:NRefactory,代码行数:8,代码来源:FindReferencesTest.cs


示例8: SetChild

 public void SetChild(string name, INamespace entity)
 {
     _children[name] = entity;
     if (name == "")
     {
         _empty = entity;
     }
 }
开发者ID:w4x,项目名称:boolangstudio,代码行数:8,代码来源:GlobalNamespace.cs


示例9: NamespaceDelegator

 public NamespaceDelegator(INamespace parent, params INamespace[] namespaces)
 {
     if (null == namespaces)
     {
         throw new ArgumentNullException("namespaces");
     }
     _parent = parent;
     _namespaces = namespaces;
 }
开发者ID:w4x,项目名称:boolangstudio,代码行数:9,代码来源:NamespaceDelegator.cs


示例10: NamespaceEntity

        public NamespaceEntity(INamespace parent, TypeSystemServices tagManager, string name)
        {
            _parent = parent;
            _typeSystemServices = tagManager;
            _name = name;
			_assemblies = new Dictionary<Assembly, Dictionary<string, List<Type>>>(AssemblyEqualityComparer.Default);
            _childrenNamespaces = new Dictionary<string, NamespaceEntity>();
            _internalModules = new List<ModuleEntity>();
            _externalModules = new List<ExternalType>();
开发者ID:boo,项目名称:boo-lang,代码行数:9,代码来源:NamespaceEntity.cs


示例11: GlobalNamespace

 public GlobalNamespace(IDictionary children)
     : base(null, children)
 {
     _empty = (INamespace)children[""];
     if (null == _empty)
     {
         _empty = NullNamespace.Default;
     }
 }
开发者ID:w4x,项目名称:boolangstudio,代码行数:9,代码来源:GlobalNamespace.cs


示例12: SimpleNamespace

 public SimpleNamespace(INamespace parent, IDictionary children)
 {
     if (null == children)
     {
         throw new ArgumentNullException("children");
     }
     _parent = parent;
     _children = children;
 }
开发者ID:w4x,项目名称:boolangstudio,代码行数:9,代码来源:SimpleNamespace.cs


示例13: IsAccessible

		bool IsAccessible(MemberLookup lookup, INamespace ns)
		{
			if (ns.Types.Any (t => lookup.IsAccessible (t, false)))
				return true;
			foreach (var child in ns.ChildNamespaces)
				if (IsAccessible (lookup, child))
					return true;
			return false;
		}
开发者ID:RainsSoft,项目名称:playscript-monodevelop,代码行数:9,代码来源:CompletionDataWrapper.cs


示例14: MergedNamespace

		/// <summary>
		/// Creates a new merged root namespace.
		/// </summary>
		/// <param name="compilation">The main compilation.</param>
		/// <param name="namespaces">The individual namespaces being merged.</param>
		/// <param name="externAlias">The extern alias for this namespace.</param>
		public MergedNamespace(ICompilation compilation, INamespace[] namespaces, string externAlias = null)
		{
			if (compilation == null)
				throw new ArgumentNullException("compilation");
			if (namespaces == null)
				throw new ArgumentNullException("namespaces");
			this.compilation = compilation;
			this.namespaces = namespaces;
			this.externAlias = externAlias;
		}
开发者ID:0xb1dd1e,项目名称:NRefactory,代码行数:16,代码来源:MergedNamespace.cs


示例15: ResolveQualifiedName

		public static Set<IEntity> ResolveQualifiedName(INamespace root, string qualifiedName)
		{
			INamespace current = root;
			string[] parts = qualifiedName.Split('.');
			for (int i=0; i < parts.Length - 1; ++i)
				current = (INamespace) ResolveSingle(current, parts[i]);
			var result = new Set<IEntity>();
			current.Resolve(result, parts[parts.Length - 1], EntityType.Any);
			return result;
		}
开发者ID:0xb1dd1e,项目名称:boo,代码行数:10,代码来源:NamespaceAssert.cs


示例16: AddNamespace

		public void AddNamespace (MemberLookup lookup, INamespace ns)
		{
			if (usedNamespaces.Contains (ns.Name))
				return;
			if (!IsAccessible (lookup, ns)) {
				usedNamespaces.Add (ns.Name);
				return;
			}
			usedNamespaces.Add (ns.Name);
			result.Add (Factory.CreateNamespaceCompletionData (ns));
		}
开发者ID:RainsSoft,项目名称:playscript-monodevelop,代码行数:11,代码来源:CompletionDataWrapper.cs


示例17: CoalescedNamespaceFor

 public static INamespace CoalescedNamespaceFor(INamespace parent, string name, List<INamespace> namespaces)
 {
     switch (namespaces.Count)
     {
         case 0:
             return null;
         case 1:
             return namespaces.First();
         default:
             return new ResolvedNamespaces(name, parent, namespaces.ToArray());
     }
 }
开发者ID:boo-lang,项目名称:boo,代码行数:12,代码来源:Namespaces.cs


示例18: ResolveCoalescingNamespaces

 public static bool ResolveCoalescingNamespaces(INamespace parent, INamespace namespaceToResolveAgainst, string name, EntityType typesToConsider, ICollection<IEntity> resultingSet)
 {
     var resolved = AcquireSet();
     try {
         if (!namespaceToResolveAgainst.Resolve(resolved, name, typesToConsider))
             return false;
         return CoalesceResolved(resolved, parent, name, resultingSet);
     }
     finally {
         ReleaseSet(resolved);
     }
 }
开发者ID:boo-lang,项目名称:boo,代码行数:12,代码来源:Namespaces.cs


示例19: CollectAllMembers

 private static void CollectAllMembers(List<IEntity> members, INamespace entity)
 {
     var type = entity as IType;
     if (null != type)
     {
         members.ExtendUnique(type.GetMembers());
         CollectBaseTypeMembers(members, type.BaseType);
     }
     else
     {
         members.Extend(entity.GetMembers());
     }
 }
开发者ID:Bombadil77,项目名称:boo,代码行数:13,代码来源:MemberCollector.cs


示例20: WriteNamespace

 public void WriteNamespace(INamespace namespaceDeclaration)
 {
     if (_injectXmlDoc)
     {
         // inject XML documentation into generated namespace
         string nsStr = GetNamespaceAsString(namespaceDeclaration);
         _formatter.Write(nsStr);
     }
     else
     {
         // write it as the original implementor does it
         _writer.WriteNamespace(namespaceDeclaration);
     }
 }
开发者ID:vanloc0301,项目名称:mychongchong,代码行数:14,代码来源:XmlDocLanguageWriter.cs



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# INamespaceOrTypeSymbol类代码示例发布时间:2022-05-24
下一篇:
C# INamedTypeSymbol类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap