本文整理汇总了C#中System.Collections.Dictionary.All方法的典型用法代码示例。如果您正苦于以下问题:C# Dictionary.All方法的具体用法?C# Dictionary.All怎么用?C# Dictionary.All使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Collections.Dictionary
的用法示例。
在下文中一共展示了Dictionary.All方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CheckDataCorrectness
private static bool CheckDataCorrectness(Dictionary<ulong, TaskStatInfo> data)
{
return data.All(
x => x.Key != null &&
x.Value.ResourceName != null &&
x.Value.ProcessInfoCollection.All(y => y.Key != null && y.Value != null && y.Value.All(z => z != null)));
}
示例2: Join
public List<Dictionary<string, object>> Join (Dictionary<string, object> joinData)
{
if (joinData == null || joinData.Count <= 0) {
return data;
}
return data.Where (x => joinData.All (y => x.ContainsKey (y.Key) && x [y.Key].Equals (y.Value))).ToList ();
}
示例3: WebConfigStateAllowsEnumeratingOverConfigItems
public void WebConfigStateAllowsEnumeratingOverConfigItems()
{
// Arrange
var dictionary = new Dictionary<string, string> { { "a", "b" }, { "c", "d" }, { "x12", "y34" } };
var stateStorage = GetWebConfigScopeStorage(dictionary);
// Act and Assert
Assert.True(dictionary.All(item => item.Value == stateStorage[item.Key] as string));
}
示例4: QuickPulseDataAccumulatorCollectsTelemetryItemsInThreadSafeManner
public void QuickPulseDataAccumulatorCollectsTelemetryItemsInThreadSafeManner()
{
// ARRANGE
var accumulator = new QuickPulseDataAccumulator();
// ACT
var iterationCount = 1000;
var concurrency = 12;
Action addItemTask =
() =>
Enumerable.Range(0, iterationCount)
.ToList()
.ForEach(
i => accumulator.TelemetryDocuments.Push(new RequestTelemetryDocument()
{
Name = i.ToString(CultureInfo.InvariantCulture)
}));
var tasks = new List<Action>();
for (int i = 0; i < concurrency; i++)
{
tasks.Add(addItemTask);
}
Parallel.Invoke(new ParallelOptions() { MaxDegreeOfParallelism = concurrency }, tasks.ToArray());
// ASSERT
var dict = new Dictionary<int, int>();
foreach (var item in accumulator.TelemetryDocuments)
{
int requestNumber = int.Parse(((RequestTelemetryDocument)item).Name, CultureInfo.InvariantCulture);
if (dict.ContainsKey(requestNumber))
{
dict[requestNumber]++;
}
else
{
dict[requestNumber] = 1;
}
}
Assert.AreEqual(iterationCount, dict.Count);
Assert.IsTrue(dict.All(pair => pair.Value == concurrency));
}
开发者ID:Microsoft,项目名称:ApplicationInsights-dotnet-server,代码行数:45,代码来源:QuickPulseDataAccumulatorTests.cs
示例5: VerifyForwardedTypes
private static int VerifyForwardedTypes(
Dictionary<INamedTypeSymbol, INamedTypeSymbol> equivalentTypesWithDifferingAssemblies,
Compilation compilation,
HashSet<INamedTypeSymbol> verifiedKeys,
bool isSearchSymbolCompilation)
{
Contract.ThrowIfNull(compilation);
Contract.ThrowIfNull(equivalentTypesWithDifferingAssemblies);
Contract.ThrowIfTrue(!equivalentTypesWithDifferingAssemblies.Any());
// Must contain equivalents named types residing in different assemblies.
Contract.ThrowIfFalse(equivalentTypesWithDifferingAssemblies.All(kvp => !SymbolEquivalenceComparer.Instance.Equals(kvp.Key.ContainingAssembly, kvp.Value.ContainingAssembly)));
// Must contain non-nested named types.
Contract.ThrowIfFalse(equivalentTypesWithDifferingAssemblies.All(kvp => kvp.Key.ContainingType == null));
Contract.ThrowIfFalse(equivalentTypesWithDifferingAssemblies.All(kvp => kvp.Value.ContainingType == null));
var referencedAssemblies = new MultiDictionary<string, IAssemblySymbol>();
foreach (var assembly in compilation.GetReferencedAssemblySymbols())
{
referencedAssemblies.Add(assembly.Name, assembly);
}
int verifiedCount = 0;
foreach (var kvp in equivalentTypesWithDifferingAssemblies)
{
if (!verifiedKeys.Contains(kvp.Key))
{
INamedTypeSymbol originalType, expectedForwardedType;
if (isSearchSymbolCompilation)
{
originalType = kvp.Value.OriginalDefinition;
expectedForwardedType = kvp.Key.OriginalDefinition;
}
else
{
originalType = kvp.Key.OriginalDefinition;
expectedForwardedType = kvp.Value.OriginalDefinition;
}
foreach (var referencedAssembly in referencedAssemblies[originalType.ContainingAssembly.Name])
{
var fullyQualifiedTypeName = originalType.MetadataName;
if (originalType.ContainingNamespace != null)
{
fullyQualifiedTypeName = originalType.ContainingNamespace.ToDisplayString(SymbolDisplayFormats.SignatureFormat) +
"." + fullyQualifiedTypeName;
}
// Resolve forwarded type and verify that the types from different assembly are indeed equivalent.
var forwardedType = referencedAssembly.ResolveForwardedType(fullyQualifiedTypeName);
if (forwardedType == expectedForwardedType)
{
verifiedKeys.Add(kvp.Key);
verifiedCount++;
}
}
}
}
return verifiedCount;
}