本文整理汇总了C#中ArrayBuilder.Distinct方法的典型用法代码示例。如果您正苦于以下问题:C# ArrayBuilder.Distinct方法的具体用法?C# ArrayBuilder.Distinct怎么用?C# ArrayBuilder.Distinct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ArrayBuilder
的用法示例。
在下文中一共展示了ArrayBuilder.Distinct方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LookupExtensionMethodsInUsings
internal void LookupExtensionMethodsInUsings(
ArrayBuilder<MethodSymbol> methods,
string name,
int arity,
LookupOptions options,
bool callerIsSemanticModel)
{
Debug.Assert(methods.Count == 0);
// We need to avoid collecting multiple candidates for an extension method imported both through a namespace and a static class
// We will look for duplicates only if both of the following flags are set to true
bool seenNamespaceWithExtensionMethods = false;
bool seenStaticClassWithExtensionMethods = false;
foreach (var nsOrType in this.Usings)
{
switch (nsOrType.NamespaceOrType.Kind)
{
case SymbolKind.Namespace:
{
var count = methods.Count;
((NamespaceSymbol)nsOrType.NamespaceOrType).GetExtensionMethods(methods, name, arity, options);
// If we found any extension methods, then consider this using as used.
if (methods.Count != count)
{
MarkImportDirective(nsOrType.UsingDirective, callerIsSemanticModel);
seenNamespaceWithExtensionMethods = true;
}
break;
}
case SymbolKind.NamedType:
{
var count = methods.Count;
((NamedTypeSymbol)nsOrType.NamespaceOrType).GetExtensionMethods(methods, name, arity, options);
// If we found any extension methods, then consider this using as used.
if (methods.Count != count)
{
MarkImportDirective(nsOrType.UsingDirective, callerIsSemanticModel);
seenStaticClassWithExtensionMethods = true;
}
break;
}
}
}
if (seenNamespaceWithExtensionMethods && seenStaticClassWithExtensionMethods)
{
var methodsNoDuplicates = ArrayBuilder<MethodSymbol>.GetInstance();
methodsNoDuplicates.AddRange(methods.Distinct());
if (methodsNoDuplicates.Count < methods.Count)
{
methods.Clear();
methods.AddRange(methodsNoDuplicates);
}
methodsNoDuplicates.Free();
}
}