### YamlMime:ManagedReference items: - uid: adas_core.Domain.Utils.EquatableDictionary`2 commentId: T:adas_core.Domain.Utils.EquatableDictionary`2 id: EquatableDictionary`2 parent: adas_core.Domain.Utils children: - adas_core.Domain.Utils.EquatableDictionary`2.Equals(System.Object) - adas_core.Domain.Utils.EquatableDictionary`2.Equals(adas_core.Domain.Utils.ComparableDictionary{`0,`1}) - adas_core.Domain.Utils.EquatableDictionary`2.GetHashCode langs: - csharp - vb name: EquatableDictionary nameWithType: EquatableDictionary fullName: adas_core.Domain.Utils.EquatableDictionary type: Class source: remote: path: adas-core.Domain/Utils/EquatableDictionary.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: EquatableDictionary path: ../../adas-core.Domain/Utils/EquatableDictionary.cs startLine: 2 assemblies: - adas-core.Domain namespace: adas_core.Domain.Utils syntax: content: 'public sealed class EquatableDictionary : Dictionary, IDictionary, ICollection>, IReadOnlyDictionary, IReadOnlyCollection>, IEnumerable>, IDictionary, ICollection, IEnumerable, IDeserializationCallback, ISerializable, IEquatable> where TKey : notnull where TValue : notnull' typeParameters: - id: TKey - id: TValue content.vb: Public NotInheritable Class EquatableDictionary(Of TKey, TValue) Inherits Dictionary(Of TKey, TValue) Implements IDictionary(Of TKey, TValue), ICollection(Of KeyValuePair(Of TKey, TValue)), IReadOnlyDictionary(Of TKey, TValue), IReadOnlyCollection(Of KeyValuePair(Of TKey, TValue)), IEnumerable(Of KeyValuePair(Of TKey, TValue)), IDictionary, ICollection, IEnumerable, IDeserializationCallback, ISerializable, IEquatable(Of ComparableDictionary(Of TKey, TValue)) inheritance: - System.Object - System.Collections.Generic.Dictionary{{TKey},{TValue}} implements: - System.Collections.Generic.IDictionary{{TKey},{TValue}} - System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{{TKey},{TValue}}} - System.Collections.Generic.IReadOnlyDictionary{{TKey},{TValue}} - System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{{TKey},{TValue}}} - System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{{TKey},{TValue}}} - System.Collections.IDictionary - System.Collections.ICollection - System.Collections.IEnumerable - System.Runtime.Serialization.IDeserializationCallback - System.Runtime.Serialization.ISerializable - System.IEquatable{adas_core.Domain.Utils.ComparableDictionary{{TKey},{TValue}}} inheritedMembers: - System.Collections.Generic.Dictionary{{TKey},{TValue}}.Add({TKey},{TValue}) - System.Collections.Generic.Dictionary{{TKey},{TValue}}.Clear - System.Collections.Generic.Dictionary{{TKey},{TValue}}.ContainsKey({TKey}) - System.Collections.Generic.Dictionary{{TKey},{TValue}}.ContainsValue({TValue}) - System.Collections.Generic.Dictionary{{TKey},{TValue}}.EnsureCapacity(System.Int32) - System.Collections.Generic.Dictionary{{TKey},{TValue}}.GetEnumerator - System.Collections.Generic.Dictionary{{TKey},{TValue}}.OnDeserialization(System.Object) - System.Collections.Generic.Dictionary{{TKey},{TValue}}.Remove({TKey}) - System.Collections.Generic.Dictionary{{TKey},{TValue}}.Remove({TKey},{TValue}@) - System.Collections.Generic.Dictionary{{TKey},{TValue}}.TrimExcess - System.Collections.Generic.Dictionary{{TKey},{TValue}}.TrimExcess(System.Int32) - System.Collections.Generic.Dictionary{{TKey},{TValue}}.TryAdd({TKey},{TValue}) - System.Collections.Generic.Dictionary{{TKey},{TValue}}.TryGetValue({TKey},{TValue}@) - System.Collections.Generic.Dictionary{{TKey},{TValue}}.Comparer - System.Collections.Generic.Dictionary{{TKey},{TValue}}.Count - System.Collections.Generic.Dictionary{{TKey},{TValue}}.Item({TKey}) - System.Collections.Generic.Dictionary{{TKey},{TValue}}.Keys - System.Collections.Generic.Dictionary{{TKey},{TValue}}.Values - System.Object.Equals(System.Object,System.Object) - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString extensionMethods: - System.Collections.Generic.IDictionary{`0,`1}.adas_core.Domain.Utils.DictionaryEx.GetValue``2({TKey},{TValue}) - System.Collections.Generic.IDictionary{`0,`1}.adas_core.Domain.Utils.DictionaryEx.ToListString``2(System.String,System.String) - System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber - System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble - System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr nameWithType.vb: EquatableDictionary(Of TKey, TValue) fullName.vb: adas_core.Domain.Utils.EquatableDictionary(Of TKey, TValue) name.vb: EquatableDictionary(Of TKey, TValue) - uid: adas_core.Domain.Utils.EquatableDictionary`2.Equals(adas_core.Domain.Utils.ComparableDictionary{`0,`1}) commentId: M:adas_core.Domain.Utils.EquatableDictionary`2.Equals(adas_core.Domain.Utils.ComparableDictionary{`0,`1}) id: Equals(adas_core.Domain.Utils.ComparableDictionary{`0,`1}) parent: adas_core.Domain.Utils.EquatableDictionary`2 langs: - csharp - vb name: Equals(ComparableDictionary?) nameWithType: EquatableDictionary.Equals(ComparableDictionary?) fullName: adas_core.Domain.Utils.EquatableDictionary.Equals(adas_core.Domain.Utils.ComparableDictionary?) type: Method source: remote: path: adas-core.Domain/Utils/EquatableDictionary.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: Equals path: ../../adas-core.Domain/Utils/EquatableDictionary.cs startLine: 12 assemblies: - adas-core.Domain namespace: adas_core.Domain.Utils summary: >- Determines whether the current dictionary is equal to another by comparing their counts and key-value pairs. Returns false if the other dictionary is null, has a different count, is missing any key present in this dictionary, or contains a different value for any shared key. example: [] syntax: content: public bool Equals(ComparableDictionary? other) parameters: - id: other type: adas_core.Domain.Utils.ComparableDictionary{{TKey},{TValue}} description: The dictionary to compare against this instance. return: type: System.Boolean description: true if both dictionaries contain the same keys with equal values; otherwise, false. content.vb: Public Function Equals(other As ComparableDictionary(Of TKey, TValue)) As Boolean overload: adas_core.Domain.Utils.EquatableDictionary`2.Equals* implements: - System.IEquatable{adas_core.Domain.Utils.ComparableDictionary{{TKey},{TValue}}}.Equals(adas_core.Domain.Utils.ComparableDictionary{{TKey},{TValue}}) nameWithType.vb: EquatableDictionary(Of TKey, TValue).Equals(ComparableDictionary(Of TKey, TValue)) fullName.vb: adas_core.Domain.Utils.EquatableDictionary(Of TKey, TValue).Equals(adas_core.Domain.Utils.ComparableDictionary(Of TKey, TValue)) name.vb: Equals(ComparableDictionary(Of TKey, TValue)) - uid: adas_core.Domain.Utils.EquatableDictionary`2.Equals(System.Object) commentId: M:adas_core.Domain.Utils.EquatableDictionary`2.Equals(System.Object) id: Equals(System.Object) parent: adas_core.Domain.Utils.EquatableDictionary`2 langs: - csharp - vb name: Equals(object?) nameWithType: EquatableDictionary.Equals(object?) fullName: adas_core.Domain.Utils.EquatableDictionary.Equals(object?) type: Method source: remote: path: adas-core.Domain/Utils/EquatableDictionary.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: Equals path: ../../adas-core.Domain/Utils/EquatableDictionary.cs startLine: 31 assemblies: - adas-core.Domain namespace: adas_core.Domain.Utils summary: Determines whether the current instance is equal to the specified object by attempting to cast it to a and delegating to the typed equality comparison. Returns false when the supplied object is not a . example: [] syntax: content: public override bool Equals(object? other) parameters: - id: other type: System.Object description: The object to compare with the current instance. return: type: System.Boolean description: true if other is a and is equal to the current instance; otherwise, false. content.vb: Public Overrides Function Equals(other As Object) As Boolean overridden: System.Object.Equals(System.Object) overload: adas_core.Domain.Utils.EquatableDictionary`2.Equals* nameWithType.vb: EquatableDictionary(Of TKey, TValue).Equals(Object) fullName.vb: adas_core.Domain.Utils.EquatableDictionary(Of TKey, TValue).Equals(Object) name.vb: Equals(Object) - uid: adas_core.Domain.Utils.EquatableDictionary`2.GetHashCode commentId: M:adas_core.Domain.Utils.EquatableDictionary`2.GetHashCode id: GetHashCode parent: adas_core.Domain.Utils.EquatableDictionary`2 langs: - csharp - vb name: GetHashCode() nameWithType: EquatableDictionary.GetHashCode() fullName: adas_core.Domain.Utils.EquatableDictionary.GetHashCode() type: Method source: remote: path: adas-core.Domain/Utils/EquatableDictionary.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: GetHashCode path: ../../adas-core.Domain/Utils/EquatableDictionary.cs startLine: 41 assemblies: - adas-core.Domain namespace: adas_core.Domain.Utils summary: >- Computes a hash code for the collection by combining the hash codes of each key-value pair. Each pair contributes a hash derived from its key and value, and the per-pair hashes are combined using XOR. example: [] syntax: content: public override int GetHashCode() return: type: System.Int32 description: An integer hash code that represents the contents of the collection. content.vb: Public Overrides Function GetHashCode() As Integer overridden: System.Object.GetHashCode overload: adas_core.Domain.Utils.EquatableDictionary`2.GetHashCode* nameWithType.vb: EquatableDictionary(Of TKey, TValue).GetHashCode() fullName.vb: adas_core.Domain.Utils.EquatableDictionary(Of TKey, TValue).GetHashCode() references: - uid: adas_core.Domain.Utils commentId: N:adas_core.Domain.Utils href: adas_core.html name: adas_core.Domain.Utils nameWithType: adas_core.Domain.Utils fullName: adas_core.Domain.Utils spec.csharp: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Utils name: Utils href: adas_core.Domain.Utils.html spec.vb: - uid: adas_core name: adas_core href: adas_core.html - name: . - uid: adas_core.Domain name: Domain href: adas_core.Domain.html - name: . - uid: adas_core.Domain.Utils name: Utils href: adas_core.Domain.Utils.html - uid: System.Object commentId: T:System.Object parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: object nameWithType: object fullName: object nameWithType.vb: Object fullName.vb: Object name.vb: Object - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}} commentId: T:System.Collections.Generic.Dictionary{`0,`1} parent: System.Collections.Generic definition: System.Collections.Generic.Dictionary`2 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 name: Dictionary nameWithType: Dictionary fullName: System.Collections.Generic.Dictionary nameWithType.vb: Dictionary(Of TKey, TValue) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue) name.vb: Dictionary(Of TKey, TValue) spec.csharp: - uid: System.Collections.Generic.Dictionary`2 name: Dictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' spec.vb: - uid: System.Collections.Generic.Dictionary`2 name: Dictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.IDictionary{{TKey},{TValue}} commentId: T:System.Collections.Generic.IDictionary{`0,`1} parent: System.Collections.Generic definition: System.Collections.Generic.IDictionary`2 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 name: IDictionary nameWithType: IDictionary fullName: System.Collections.Generic.IDictionary nameWithType.vb: IDictionary(Of TKey, TValue) fullName.vb: System.Collections.Generic.IDictionary(Of TKey, TValue) name.vb: IDictionary(Of TKey, TValue) spec.csharp: - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' spec.vb: - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{{TKey},{TValue}}} commentId: T:System.Collections.Generic.ICollection{System.Collections.Generic.KeyValuePair{`0,`1}} parent: System.Collections.Generic definition: System.Collections.Generic.ICollection`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 name: ICollection> nameWithType: ICollection> fullName: System.Collections.Generic.ICollection> nameWithType.vb: ICollection(Of KeyValuePair(Of TKey, TValue)) fullName.vb: System.Collections.Generic.ICollection(Of System.Collections.Generic.KeyValuePair(Of TKey, TValue)) name.vb: ICollection(Of KeyValuePair(Of TKey, TValue)) spec.csharp: - uid: System.Collections.Generic.ICollection`1 name: ICollection isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: < - uid: System.Collections.Generic.KeyValuePair`2 name: KeyValuePair isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' - name: '>' spec.vb: - uid: System.Collections.Generic.ICollection`1 name: ICollection isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: ( - name: Of - name: " " - uid: System.Collections.Generic.KeyValuePair`2 name: KeyValuePair isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - name: ) - uid: System.Collections.Generic.IReadOnlyDictionary{{TKey},{TValue}} commentId: T:System.Collections.Generic.IReadOnlyDictionary{`0,`1} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyDictionary`2 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 name: IReadOnlyDictionary nameWithType: IReadOnlyDictionary fullName: System.Collections.Generic.IReadOnlyDictionary nameWithType.vb: IReadOnlyDictionary(Of TKey, TValue) fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of TKey, TValue) name.vb: IReadOnlyDictionary(Of TKey, TValue) spec.csharp: - uid: System.Collections.Generic.IReadOnlyDictionary`2 name: IReadOnlyDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyDictionary`2 name: IReadOnlyDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{{TKey},{TValue}}} commentId: T:System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{`0,`1}} parent: System.Collections.Generic definition: System.Collections.Generic.IReadOnlyCollection`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 name: IReadOnlyCollection> nameWithType: IReadOnlyCollection> fullName: System.Collections.Generic.IReadOnlyCollection> nameWithType.vb: IReadOnlyCollection(Of KeyValuePair(Of TKey, TValue)) fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of System.Collections.Generic.KeyValuePair(Of TKey, TValue)) name.vb: IReadOnlyCollection(Of KeyValuePair(Of TKey, TValue)) spec.csharp: - uid: System.Collections.Generic.IReadOnlyCollection`1 name: IReadOnlyCollection isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: < - uid: System.Collections.Generic.KeyValuePair`2 name: KeyValuePair isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyCollection`1 name: IReadOnlyCollection isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: ( - name: Of - name: " " - uid: System.Collections.Generic.KeyValuePair`2 name: KeyValuePair isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - name: ) - uid: System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{{TKey},{TValue}}} commentId: T:System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}} parent: System.Collections.Generic definition: System.Collections.Generic.IEnumerable`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 name: IEnumerable> nameWithType: IEnumerable> fullName: System.Collections.Generic.IEnumerable> nameWithType.vb: IEnumerable(Of KeyValuePair(Of TKey, TValue)) fullName.vb: System.Collections.Generic.IEnumerable(Of System.Collections.Generic.KeyValuePair(Of TKey, TValue)) name.vb: IEnumerable(Of KeyValuePair(Of TKey, TValue)) spec.csharp: - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: < - uid: System.Collections.Generic.KeyValuePair`2 name: KeyValuePair isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' - name: '>' spec.vb: - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: ( - name: Of - name: " " - uid: System.Collections.Generic.KeyValuePair`2 name: KeyValuePair isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - name: ) - uid: System.Collections.IDictionary commentId: T:System.Collections.IDictionary parent: System.Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.idictionary name: IDictionary nameWithType: IDictionary fullName: System.Collections.IDictionary - uid: System.Collections.ICollection commentId: T:System.Collections.ICollection parent: System.Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.icollection name: ICollection nameWithType: ICollection fullName: System.Collections.ICollection - uid: System.Collections.IEnumerable commentId: T:System.Collections.IEnumerable parent: System.Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable name: IEnumerable nameWithType: IEnumerable fullName: System.Collections.IEnumerable - uid: System.Runtime.Serialization.IDeserializationCallback commentId: T:System.Runtime.Serialization.IDeserializationCallback parent: System.Runtime.Serialization isExternal: true href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.ideserializationcallback name: IDeserializationCallback nameWithType: IDeserializationCallback fullName: System.Runtime.Serialization.IDeserializationCallback - uid: System.Runtime.Serialization.ISerializable commentId: T:System.Runtime.Serialization.ISerializable parent: System.Runtime.Serialization isExternal: true href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable name: ISerializable nameWithType: ISerializable fullName: System.Runtime.Serialization.ISerializable - uid: System.IEquatable{adas_core.Domain.Utils.ComparableDictionary{{TKey},{TValue}}} commentId: T:System.IEquatable{adas_core.Domain.Utils.ComparableDictionary{`0,`1}} parent: System definition: System.IEquatable`1 href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 name: IEquatable> nameWithType: IEquatable> fullName: System.IEquatable> nameWithType.vb: IEquatable(Of ComparableDictionary(Of TKey, TValue)) fullName.vb: System.IEquatable(Of adas_core.Domain.Utils.ComparableDictionary(Of TKey, TValue)) name.vb: IEquatable(Of ComparableDictionary(Of TKey, TValue)) spec.csharp: - uid: System.IEquatable`1 name: IEquatable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: < - uid: adas_core.Domain.Utils.ComparableDictionary`2 name: ComparableDictionary href: adas_core.Domain.Utils.ComparableDictionary-2.html - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' - name: '>' spec.vb: - uid: System.IEquatable`1 name: IEquatable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: ( - name: Of - name: " " - uid: adas_core.Domain.Utils.ComparableDictionary`2 name: ComparableDictionary href: adas_core.Domain.Utils.ComparableDictionary-2.html - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.Add({TKey},{TValue}) commentId: M:System.Collections.Generic.Dictionary{`0,`1}.Add(`0,`1) parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.Add(`0,`1) href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.add name: Add(TKey, TValue) nameWithType: Dictionary.Add(TKey, TValue) fullName: System.Collections.Generic.Dictionary.Add(TKey, TValue) nameWithType.vb: Dictionary(Of TKey, TValue).Add(TKey, TValue) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Add(TKey, TValue) spec.csharp: - uid: System.Collections.Generic.Dictionary{`0,`1}.Add(`0,`1) name: Add isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.add - name: ( - name: TKey - name: ',' - name: " " - name: TValue - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.Add(`0,`1) name: Add isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.add - name: ( - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.Clear commentId: M:System.Collections.Generic.Dictionary{`0,`1}.Clear parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.Clear href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.clear name: Clear() nameWithType: Dictionary.Clear() fullName: System.Collections.Generic.Dictionary.Clear() nameWithType.vb: Dictionary(Of TKey, TValue).Clear() fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Clear() spec.csharp: - uid: System.Collections.Generic.Dictionary{`0,`1}.Clear name: Clear isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.clear - name: ( - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.Clear name: Clear isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.clear - name: ( - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.ContainsKey({TKey}) commentId: M:System.Collections.Generic.Dictionary{`0,`1}.ContainsKey(`0) parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.ContainsKey(`0) href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containskey name: ContainsKey(TKey) nameWithType: Dictionary.ContainsKey(TKey) fullName: System.Collections.Generic.Dictionary.ContainsKey(TKey) nameWithType.vb: Dictionary(Of TKey, TValue).ContainsKey(TKey) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).ContainsKey(TKey) spec.csharp: - uid: System.Collections.Generic.Dictionary{`0,`1}.ContainsKey(`0) name: ContainsKey isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containskey - name: ( - name: TKey - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.ContainsKey(`0) name: ContainsKey isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containskey - name: ( - name: TKey - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.ContainsValue({TValue}) commentId: M:System.Collections.Generic.Dictionary{`0,`1}.ContainsValue(`1) parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.ContainsValue(`1) href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containsvalue name: ContainsValue(TValue) nameWithType: Dictionary.ContainsValue(TValue) fullName: System.Collections.Generic.Dictionary.ContainsValue(TValue) nameWithType.vb: Dictionary(Of TKey, TValue).ContainsValue(TValue) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).ContainsValue(TValue) spec.csharp: - uid: System.Collections.Generic.Dictionary{`0,`1}.ContainsValue(`1) name: ContainsValue isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containsvalue - name: ( - name: TValue - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.ContainsValue(`1) name: ContainsValue isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containsvalue - name: ( - name: TValue - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.EnsureCapacity(System.Int32) commentId: M:System.Collections.Generic.Dictionary{`0,`1}.EnsureCapacity(System.Int32) parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.EnsureCapacity(System.Int32) href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ensurecapacity name: EnsureCapacity(int) nameWithType: Dictionary.EnsureCapacity(int) fullName: System.Collections.Generic.Dictionary.EnsureCapacity(int) nameWithType.vb: Dictionary(Of TKey, TValue).EnsureCapacity(Integer) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).EnsureCapacity(Integer) name.vb: EnsureCapacity(Integer) spec.csharp: - uid: System.Collections.Generic.Dictionary{`0,`1}.EnsureCapacity(System.Int32) name: EnsureCapacity isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ensurecapacity - name: ( - uid: System.Int32 name: int isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.EnsureCapacity(System.Int32) name: EnsureCapacity isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ensurecapacity - name: ( - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.GetEnumerator commentId: M:System.Collections.Generic.Dictionary{`0,`1}.GetEnumerator parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.GetEnumerator href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.getenumerator name: GetEnumerator() nameWithType: Dictionary.GetEnumerator() fullName: System.Collections.Generic.Dictionary.GetEnumerator() nameWithType.vb: Dictionary(Of TKey, TValue).GetEnumerator() fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).GetEnumerator() spec.csharp: - uid: System.Collections.Generic.Dictionary{`0,`1}.GetEnumerator name: GetEnumerator isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.getenumerator - name: ( - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.GetEnumerator name: GetEnumerator isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.getenumerator - name: ( - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.OnDeserialization(System.Object) commentId: M:System.Collections.Generic.Dictionary{`0,`1}.OnDeserialization(System.Object) parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.OnDeserialization(System.Object) href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ondeserialization name: OnDeserialization(object) nameWithType: Dictionary.OnDeserialization(object) fullName: System.Collections.Generic.Dictionary.OnDeserialization(object) nameWithType.vb: Dictionary(Of TKey, TValue).OnDeserialization(Object) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).OnDeserialization(Object) name.vb: OnDeserialization(Object) spec.csharp: - uid: System.Collections.Generic.Dictionary{`0,`1}.OnDeserialization(System.Object) name: OnDeserialization isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ondeserialization - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.OnDeserialization(System.Object) name: OnDeserialization isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ondeserialization - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.Remove({TKey}) commentId: M:System.Collections.Generic.Dictionary{`0,`1}.Remove(`0) parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.Remove(`0) href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove(-0) name: Remove(TKey) nameWithType: Dictionary.Remove(TKey) fullName: System.Collections.Generic.Dictionary.Remove(TKey) nameWithType.vb: Dictionary(Of TKey, TValue).Remove(TKey) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Remove(TKey) spec.csharp: - uid: System.Collections.Generic.Dictionary{`0,`1}.Remove(`0) name: Remove isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove(-0) - name: ( - name: TKey - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.Remove(`0) name: Remove isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove(-0) - name: ( - name: TKey - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.Remove({TKey},{TValue}@) commentId: M:System.Collections.Generic.Dictionary{`0,`1}.Remove(`0,`1@) parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.Remove(`0,`1@) href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove(-0-1@) name: Remove(TKey, out TValue) nameWithType: Dictionary.Remove(TKey, out TValue) fullName: System.Collections.Generic.Dictionary.Remove(TKey, out TValue) nameWithType.vb: Dictionary(Of TKey, TValue).Remove(TKey, TValue) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Remove(TKey, TValue) name.vb: Remove(TKey, TValue) spec.csharp: - uid: System.Collections.Generic.Dictionary{`0,`1}.Remove(`0,`1@) name: Remove isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove(-0-1@) - name: ( - name: TKey - name: ',' - name: " " - name: out - name: " " - name: TValue - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.Remove(`0,`1@) name: Remove isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove(-0-1@) - name: ( - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.TrimExcess commentId: M:System.Collections.Generic.Dictionary{`0,`1}.TrimExcess parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.TrimExcess href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess name: TrimExcess() nameWithType: Dictionary.TrimExcess() fullName: System.Collections.Generic.Dictionary.TrimExcess() nameWithType.vb: Dictionary(Of TKey, TValue).TrimExcess() fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).TrimExcess() spec.csharp: - uid: System.Collections.Generic.Dictionary{`0,`1}.TrimExcess name: TrimExcess isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess - name: ( - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.TrimExcess name: TrimExcess isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess - name: ( - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.TrimExcess(System.Int32) commentId: M:System.Collections.Generic.Dictionary{`0,`1}.TrimExcess(System.Int32) parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.TrimExcess(System.Int32) href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess(system-int32) name: TrimExcess(int) nameWithType: Dictionary.TrimExcess(int) fullName: System.Collections.Generic.Dictionary.TrimExcess(int) nameWithType.vb: Dictionary(Of TKey, TValue).TrimExcess(Integer) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).TrimExcess(Integer) name.vb: TrimExcess(Integer) spec.csharp: - uid: System.Collections.Generic.Dictionary{`0,`1}.TrimExcess(System.Int32) name: TrimExcess isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess(system-int32) - name: ( - uid: System.Int32 name: int isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.TrimExcess(System.Int32) name: TrimExcess isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess(system-int32) - name: ( - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.TryAdd({TKey},{TValue}) commentId: M:System.Collections.Generic.Dictionary{`0,`1}.TryAdd(`0,`1) parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.TryAdd(`0,`1) href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.tryadd name: TryAdd(TKey, TValue) nameWithType: Dictionary.TryAdd(TKey, TValue) fullName: System.Collections.Generic.Dictionary.TryAdd(TKey, TValue) nameWithType.vb: Dictionary(Of TKey, TValue).TryAdd(TKey, TValue) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).TryAdd(TKey, TValue) spec.csharp: - uid: System.Collections.Generic.Dictionary{`0,`1}.TryAdd(`0,`1) name: TryAdd isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.tryadd - name: ( - name: TKey - name: ',' - name: " " - name: TValue - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.TryAdd(`0,`1) name: TryAdd isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.tryadd - name: ( - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.TryGetValue({TKey},{TValue}@) commentId: M:System.Collections.Generic.Dictionary{`0,`1}.TryGetValue(`0,`1@) parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.TryGetValue(`0,`1@) href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trygetvalue name: TryGetValue(TKey, out TValue) nameWithType: Dictionary.TryGetValue(TKey, out TValue) fullName: System.Collections.Generic.Dictionary.TryGetValue(TKey, out TValue) nameWithType.vb: Dictionary(Of TKey, TValue).TryGetValue(TKey, TValue) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).TryGetValue(TKey, TValue) name.vb: TryGetValue(TKey, TValue) spec.csharp: - uid: System.Collections.Generic.Dictionary{`0,`1}.TryGetValue(`0,`1@) name: TryGetValue isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trygetvalue - name: ( - name: TKey - name: ',' - name: " " - name: out - name: " " - name: TValue - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.TryGetValue(`0,`1@) name: TryGetValue isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trygetvalue - name: ( - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.Comparer commentId: P:System.Collections.Generic.Dictionary{`0,`1}.Comparer parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.Comparer href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.comparer name: Comparer nameWithType: Dictionary.Comparer fullName: System.Collections.Generic.Dictionary.Comparer nameWithType.vb: Dictionary(Of TKey, TValue).Comparer fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Comparer - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.Count commentId: P:System.Collections.Generic.Dictionary{`0,`1}.Count parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.Count href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.count name: Count nameWithType: Dictionary.Count fullName: System.Collections.Generic.Dictionary.Count nameWithType.vb: Dictionary(Of TKey, TValue).Count fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Count - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.Item({TKey}) commentId: P:System.Collections.Generic.Dictionary{`0,`1}.Item(`0) parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.Item(`0) href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.item name: this[TKey] nameWithType: Dictionary.this[TKey] fullName: System.Collections.Generic.Dictionary.this[TKey] nameWithType.vb: Dictionary(Of TKey, TValue).this[](TKey) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).this[](TKey) name.vb: this[](TKey) spec.csharp: - name: this - name: '[' - name: TKey - name: ']' spec.vb: - uid: System.Collections.Generic.Dictionary{`0,`1}.Item(`0) name: this[] isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.item - name: ( - name: TKey - name: ) - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.Keys commentId: P:System.Collections.Generic.Dictionary{`0,`1}.Keys parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.Keys href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.keys name: Keys nameWithType: Dictionary.Keys fullName: System.Collections.Generic.Dictionary.Keys nameWithType.vb: Dictionary(Of TKey, TValue).Keys fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Keys - uid: System.Collections.Generic.Dictionary{{TKey},{TValue}}.Values commentId: P:System.Collections.Generic.Dictionary{`0,`1}.Values parent: System.Collections.Generic.Dictionary{{TKey},{TValue}} definition: System.Collections.Generic.Dictionary`2.Values href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.values name: Values nameWithType: Dictionary.Values fullName: System.Collections.Generic.Dictionary.Values nameWithType.vb: Dictionary(Of TKey, TValue).Values fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Values - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) name: Equals(object, object) nameWithType: object.Equals(object, object) fullName: object.Equals(object, object) nameWithType.vb: Object.Equals(Object, Object) fullName.vb: Object.Equals(Object, Object) name.vb: Equals(Object, Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype name: GetType() nameWithType: object.GetType() fullName: object.GetType() nameWithType.vb: Object.GetType() fullName.vb: Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) spec.vb: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals name: ReferenceEquals(object, object) nameWithType: object.ReferenceEquals(object, object) fullName: object.ReferenceEquals(object, object) nameWithType.vb: Object.ReferenceEquals(Object, Object) fullName.vb: Object.ReferenceEquals(Object, Object) name.vb: ReferenceEquals(Object, Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring name: ToString() nameWithType: object.ToString() fullName: object.ToString() nameWithType.vb: Object.ToString() fullName.vb: Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) spec.vb: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) - uid: System.Collections.Generic.IDictionary{`0,`1}.adas_core.Domain.Utils.DictionaryEx.GetValue``2({TKey},{TValue}) commentId: M:adas_core.Domain.Utils.DictionaryEx.GetValue``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1) parent: adas_core.Domain.Utils.DictionaryEx definition: adas_core.Domain.Utils.DictionaryEx.GetValue``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1) href: adas_core.Domain.Utils.DictionaryEx.html#adas_core_Domain_Utils_DictionaryEx_GetValue__2_System_Collections_Generic_IDictionary___0___1____0___1_ name: GetValue(IDictionary, TKey, TValue) nameWithType: DictionaryEx.GetValue(IDictionary, TKey, TValue) fullName: adas_core.Domain.Utils.DictionaryEx.GetValue(System.Collections.Generic.IDictionary, TKey, TValue) nameWithType.vb: DictionaryEx.GetValue(Of TKey, TValue)(IDictionary(Of TKey, TValue), TKey, TValue) fullName.vb: adas_core.Domain.Utils.DictionaryEx.GetValue(Of TKey, TValue)(System.Collections.Generic.IDictionary(Of TKey, TValue), TKey, TValue) name.vb: GetValue(Of TKey, TValue)(IDictionary(Of TKey, TValue), TKey, TValue) spec.csharp: - uid: adas_core.Domain.Utils.DictionaryEx.GetValue``2(System.Collections.Generic.IDictionary{`0,`1},`0,`1) name: GetValue href: adas_core.Domain.Utils.DictionaryEx.html#adas_core_Domain_Utils_DictionaryEx_GetValue__2_System_Collections_Generic_IDictionary___0___1____0___1_ - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' - name: ( - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' - name: ',' - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) spec.vb: - uid: adas_core.Domain.Utils.DictionaryEx.GetValue``2(System.Collections.Generic.IDictionary{`0,`1},`0,`1) name: GetValue href: adas_core.Domain.Utils.DictionaryEx.html#adas_core_Domain_Utils_DictionaryEx_GetValue__2_System_Collections_Generic_IDictionary___0___1____0___1_ - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - name: ( - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - name: ',' - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.IDictionary{`0,`1}.adas_core.Domain.Utils.DictionaryEx.ToListString``2(System.String,System.String) commentId: M:adas_core.Domain.Utils.DictionaryEx.ToListString``2(System.Collections.Generic.IDictionary{``0,``1},System.String,System.String) parent: adas_core.Domain.Utils.DictionaryEx definition: adas_core.Domain.Utils.DictionaryEx.ToListString``2(System.Collections.Generic.IDictionary{``0,``1},System.String,System.String) href: adas_core.Domain.Utils.DictionaryEx.html#adas_core_Domain_Utils_DictionaryEx_ToListString__2_System_Collections_Generic_IDictionary___0___1__System_String_System_String_ name: ToListString(IDictionary, string, string) nameWithType: DictionaryEx.ToListString(IDictionary, string, string) fullName: adas_core.Domain.Utils.DictionaryEx.ToListString(System.Collections.Generic.IDictionary, string, string) nameWithType.vb: DictionaryEx.ToListString(Of TKey, TValue)(IDictionary(Of TKey, TValue), String, String) fullName.vb: adas_core.Domain.Utils.DictionaryEx.ToListString(Of TKey, TValue)(System.Collections.Generic.IDictionary(Of TKey, TValue), String, String) name.vb: ToListString(Of TKey, TValue)(IDictionary(Of TKey, TValue), String, String) spec.csharp: - uid: adas_core.Domain.Utils.DictionaryEx.ToListString``2(System.Collections.Generic.IDictionary{`0,`1},System.String,System.String) name: ToListString href: adas_core.Domain.Utils.DictionaryEx.html#adas_core_Domain_Utils_DictionaryEx_ToListString__2_System_Collections_Generic_IDictionary___0___1__System_String_System_String_ - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' - name: ( - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' - name: ',' - name: " " - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - uid: adas_core.Domain.Utils.DictionaryEx.ToListString``2(System.Collections.Generic.IDictionary{`0,`1},System.String,System.String) name: ToListString href: adas_core.Domain.Utils.DictionaryEx.html#adas_core_Domain_Utils_DictionaryEx_ToListString__2_System_Collections_Generic_IDictionary___0___1__System_String_System_String_ - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - name: ( - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - name: ',' - name: " " - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) parent: adas_core.Domain.Utils.NumberUtils definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ name: IsNumber(object) nameWithType: NumberUtils.IsNumber(object) fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object) nameWithType.vb: NumberUtils.IsNumber(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object) name.vb: IsNumber(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) parent: adas_core.Domain.Utils.NumberUtils definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ name: ToDouble(object) nameWithType: NumberUtils.ToDouble(object) fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object) nameWithType.vb: NumberUtils.ToDouble(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object) name.vb: ToDouble(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) parent: adas_core.Domain.Utils.ObjectUtils definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ name: ToStr(object) nameWithType: ObjectUtils.ToStr(object) fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object) nameWithType.vb: ObjectUtils.ToStr(Object) fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object) name.vb: ToStr(Object) spec.csharp: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: System.Collections.Generic.Dictionary`2 commentId: T:System.Collections.Generic.Dictionary`2 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 name: Dictionary nameWithType: Dictionary fullName: System.Collections.Generic.Dictionary nameWithType.vb: Dictionary(Of TKey, TValue) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue) name.vb: Dictionary(Of TKey, TValue) spec.csharp: - uid: System.Collections.Generic.Dictionary`2 name: Dictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' spec.vb: - uid: System.Collections.Generic.Dictionary`2 name: Dictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic commentId: N:System.Collections.Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System.Collections.Generic nameWithType: System.Collections.Generic fullName: System.Collections.Generic spec.csharp: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections - name: . - uid: System.Collections.Generic name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic spec.vb: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections - name: . - uid: System.Collections.Generic name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic - uid: System.Collections.Generic.IDictionary`2 commentId: T:System.Collections.Generic.IDictionary`2 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 name: IDictionary nameWithType: IDictionary fullName: System.Collections.Generic.IDictionary nameWithType.vb: IDictionary(Of TKey, TValue) fullName.vb: System.Collections.Generic.IDictionary(Of TKey, TValue) name.vb: IDictionary(Of TKey, TValue) spec.csharp: - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' spec.vb: - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.ICollection`1 commentId: T:System.Collections.Generic.ICollection`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 name: ICollection nameWithType: ICollection fullName: System.Collections.Generic.ICollection nameWithType.vb: ICollection(Of T) fullName.vb: System.Collections.Generic.ICollection(Of T) name.vb: ICollection(Of T) spec.csharp: - uid: System.Collections.Generic.ICollection`1 name: ICollection isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Collections.Generic.ICollection`1 name: ICollection isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: ( - name: Of - name: " " - name: T - name: ) - uid: System.Collections.Generic.IReadOnlyDictionary`2 commentId: T:System.Collections.Generic.IReadOnlyDictionary`2 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 name: IReadOnlyDictionary nameWithType: IReadOnlyDictionary fullName: System.Collections.Generic.IReadOnlyDictionary nameWithType.vb: IReadOnlyDictionary(Of TKey, TValue) fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of TKey, TValue) name.vb: IReadOnlyDictionary(Of TKey, TValue) spec.csharp: - uid: System.Collections.Generic.IReadOnlyDictionary`2 name: IReadOnlyDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyDictionary`2 name: IReadOnlyDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.IReadOnlyCollection`1 commentId: T:System.Collections.Generic.IReadOnlyCollection`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 name: IReadOnlyCollection nameWithType: IReadOnlyCollection fullName: System.Collections.Generic.IReadOnlyCollection nameWithType.vb: IReadOnlyCollection(Of T) fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) name.vb: IReadOnlyCollection(Of T) spec.csharp: - uid: System.Collections.Generic.IReadOnlyCollection`1 name: IReadOnlyCollection isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Collections.Generic.IReadOnlyCollection`1 name: IReadOnlyCollection isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: ( - name: Of - name: " " - name: T - name: ) - uid: System.Collections.Generic.IEnumerable`1 commentId: T:System.Collections.Generic.IEnumerable`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 name: IEnumerable nameWithType: IEnumerable fullName: System.Collections.Generic.IEnumerable nameWithType.vb: IEnumerable(Of T) fullName.vb: System.Collections.Generic.IEnumerable(Of T) name.vb: IEnumerable(Of T) spec.csharp: - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: ( - name: Of - name: " " - name: T - name: ) - uid: System.Collections commentId: N:System.Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System.Collections nameWithType: System.Collections fullName: System.Collections spec.csharp: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections spec.vb: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections - uid: System.Runtime.Serialization commentId: N:System.Runtime.Serialization isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System.Runtime.Serialization nameWithType: System.Runtime.Serialization fullName: System.Runtime.Serialization spec.csharp: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Runtime name: Runtime isExternal: true href: https://learn.microsoft.com/dotnet/api/system.runtime - name: . - uid: System.Runtime.Serialization name: Serialization isExternal: true href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization spec.vb: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Runtime name: Runtime isExternal: true href: https://learn.microsoft.com/dotnet/api/system.runtime - name: . - uid: System.Runtime.Serialization name: Serialization isExternal: true href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization - uid: System.IEquatable`1 commentId: T:System.IEquatable`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 name: IEquatable nameWithType: IEquatable fullName: System.IEquatable nameWithType.vb: IEquatable(Of T) fullName.vb: System.IEquatable(Of T) name.vb: IEquatable(Of T) spec.csharp: - uid: System.IEquatable`1 name: IEquatable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: < - name: T - name: '>' spec.vb: - uid: System.IEquatable`1 name: IEquatable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: ( - name: Of - name: " " - name: T - name: ) - uid: System.Collections.Generic.Dictionary`2.Add(`0,`1) commentId: M:System.Collections.Generic.Dictionary`2.Add(`0,`1) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.add name: Add(TKey, TValue) nameWithType: Dictionary.Add(TKey, TValue) fullName: System.Collections.Generic.Dictionary.Add(TKey, TValue) nameWithType.vb: Dictionary(Of TKey, TValue).Add(TKey, TValue) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Add(TKey, TValue) spec.csharp: - uid: System.Collections.Generic.Dictionary`2.Add(`0,`1) name: Add isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.add - name: ( - name: TKey - name: ',' - name: " " - name: TValue - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary`2.Add(`0,`1) name: Add isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.add - name: ( - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.Dictionary`2.Clear commentId: M:System.Collections.Generic.Dictionary`2.Clear isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.clear name: Clear() nameWithType: Dictionary.Clear() fullName: System.Collections.Generic.Dictionary.Clear() nameWithType.vb: Dictionary(Of TKey, TValue).Clear() fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Clear() spec.csharp: - uid: System.Collections.Generic.Dictionary`2.Clear name: Clear isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.clear - name: ( - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary`2.Clear name: Clear isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.clear - name: ( - name: ) - uid: System.Collections.Generic.Dictionary`2.ContainsKey(`0) commentId: M:System.Collections.Generic.Dictionary`2.ContainsKey(`0) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containskey name: ContainsKey(TKey) nameWithType: Dictionary.ContainsKey(TKey) fullName: System.Collections.Generic.Dictionary.ContainsKey(TKey) nameWithType.vb: Dictionary(Of TKey, TValue).ContainsKey(TKey) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).ContainsKey(TKey) spec.csharp: - uid: System.Collections.Generic.Dictionary`2.ContainsKey(`0) name: ContainsKey isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containskey - name: ( - name: TKey - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary`2.ContainsKey(`0) name: ContainsKey isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containskey - name: ( - name: TKey - name: ) - uid: System.Collections.Generic.Dictionary`2.ContainsValue(`1) commentId: M:System.Collections.Generic.Dictionary`2.ContainsValue(`1) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containsvalue name: ContainsValue(TValue) nameWithType: Dictionary.ContainsValue(TValue) fullName: System.Collections.Generic.Dictionary.ContainsValue(TValue) nameWithType.vb: Dictionary(Of TKey, TValue).ContainsValue(TValue) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).ContainsValue(TValue) spec.csharp: - uid: System.Collections.Generic.Dictionary`2.ContainsValue(`1) name: ContainsValue isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containsvalue - name: ( - name: TValue - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary`2.ContainsValue(`1) name: ContainsValue isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containsvalue - name: ( - name: TValue - name: ) - uid: System.Collections.Generic.Dictionary`2.EnsureCapacity(System.Int32) commentId: M:System.Collections.Generic.Dictionary`2.EnsureCapacity(System.Int32) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ensurecapacity name: EnsureCapacity(int) nameWithType: Dictionary.EnsureCapacity(int) fullName: System.Collections.Generic.Dictionary.EnsureCapacity(int) nameWithType.vb: Dictionary(Of TKey, TValue).EnsureCapacity(Integer) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).EnsureCapacity(Integer) name.vb: EnsureCapacity(Integer) spec.csharp: - uid: System.Collections.Generic.Dictionary`2.EnsureCapacity(System.Int32) name: EnsureCapacity isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ensurecapacity - name: ( - uid: System.Int32 name: int isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary`2.EnsureCapacity(System.Int32) name: EnsureCapacity isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ensurecapacity - name: ( - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) - uid: System.Collections.Generic.Dictionary`2.GetEnumerator commentId: M:System.Collections.Generic.Dictionary`2.GetEnumerator isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.getenumerator name: GetEnumerator() nameWithType: Dictionary.GetEnumerator() fullName: System.Collections.Generic.Dictionary.GetEnumerator() nameWithType.vb: Dictionary(Of TKey, TValue).GetEnumerator() fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).GetEnumerator() spec.csharp: - uid: System.Collections.Generic.Dictionary`2.GetEnumerator name: GetEnumerator isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.getenumerator - name: ( - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary`2.GetEnumerator name: GetEnumerator isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.getenumerator - name: ( - name: ) - uid: System.Collections.Generic.Dictionary`2.OnDeserialization(System.Object) commentId: M:System.Collections.Generic.Dictionary`2.OnDeserialization(System.Object) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ondeserialization name: OnDeserialization(object) nameWithType: Dictionary.OnDeserialization(object) fullName: System.Collections.Generic.Dictionary.OnDeserialization(object) nameWithType.vb: Dictionary(Of TKey, TValue).OnDeserialization(Object) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).OnDeserialization(Object) name.vb: OnDeserialization(Object) spec.csharp: - uid: System.Collections.Generic.Dictionary`2.OnDeserialization(System.Object) name: OnDeserialization isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ondeserialization - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary`2.OnDeserialization(System.Object) name: OnDeserialization isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ondeserialization - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Collections.Generic.Dictionary`2.Remove(`0) commentId: M:System.Collections.Generic.Dictionary`2.Remove(`0) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove(-0) name: Remove(TKey) nameWithType: Dictionary.Remove(TKey) fullName: System.Collections.Generic.Dictionary.Remove(TKey) nameWithType.vb: Dictionary(Of TKey, TValue).Remove(TKey) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Remove(TKey) spec.csharp: - uid: System.Collections.Generic.Dictionary`2.Remove(`0) name: Remove isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove(-0) - name: ( - name: TKey - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary`2.Remove(`0) name: Remove isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove(-0) - name: ( - name: TKey - name: ) - uid: System.Collections.Generic.Dictionary`2.Remove(`0,`1@) commentId: M:System.Collections.Generic.Dictionary`2.Remove(`0,`1@) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove(-0-1@) name: Remove(TKey, out TValue) nameWithType: Dictionary.Remove(TKey, out TValue) fullName: System.Collections.Generic.Dictionary.Remove(TKey, out TValue) nameWithType.vb: Dictionary(Of TKey, TValue).Remove(TKey, TValue) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Remove(TKey, TValue) name.vb: Remove(TKey, TValue) spec.csharp: - uid: System.Collections.Generic.Dictionary`2.Remove(`0,`1@) name: Remove isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove(-0-1@) - name: ( - name: TKey - name: ',' - name: " " - name: out - name: " " - name: TValue - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary`2.Remove(`0,`1@) name: Remove isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove(-0-1@) - name: ( - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.Dictionary`2.TrimExcess commentId: M:System.Collections.Generic.Dictionary`2.TrimExcess isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess name: TrimExcess() nameWithType: Dictionary.TrimExcess() fullName: System.Collections.Generic.Dictionary.TrimExcess() nameWithType.vb: Dictionary(Of TKey, TValue).TrimExcess() fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).TrimExcess() spec.csharp: - uid: System.Collections.Generic.Dictionary`2.TrimExcess name: TrimExcess isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess - name: ( - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary`2.TrimExcess name: TrimExcess isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess - name: ( - name: ) - uid: System.Collections.Generic.Dictionary`2.TrimExcess(System.Int32) commentId: M:System.Collections.Generic.Dictionary`2.TrimExcess(System.Int32) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess(system-int32) name: TrimExcess(int) nameWithType: Dictionary.TrimExcess(int) fullName: System.Collections.Generic.Dictionary.TrimExcess(int) nameWithType.vb: Dictionary(Of TKey, TValue).TrimExcess(Integer) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).TrimExcess(Integer) name.vb: TrimExcess(Integer) spec.csharp: - uid: System.Collections.Generic.Dictionary`2.TrimExcess(System.Int32) name: TrimExcess isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess(system-int32) - name: ( - uid: System.Int32 name: int isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary`2.TrimExcess(System.Int32) name: TrimExcess isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess(system-int32) - name: ( - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: ) - uid: System.Collections.Generic.Dictionary`2.TryAdd(`0,`1) commentId: M:System.Collections.Generic.Dictionary`2.TryAdd(`0,`1) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.tryadd name: TryAdd(TKey, TValue) nameWithType: Dictionary.TryAdd(TKey, TValue) fullName: System.Collections.Generic.Dictionary.TryAdd(TKey, TValue) nameWithType.vb: Dictionary(Of TKey, TValue).TryAdd(TKey, TValue) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).TryAdd(TKey, TValue) spec.csharp: - uid: System.Collections.Generic.Dictionary`2.TryAdd(`0,`1) name: TryAdd isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.tryadd - name: ( - name: TKey - name: ',' - name: " " - name: TValue - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary`2.TryAdd(`0,`1) name: TryAdd isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.tryadd - name: ( - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.Dictionary`2.TryGetValue(`0,`1@) commentId: M:System.Collections.Generic.Dictionary`2.TryGetValue(`0,`1@) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trygetvalue name: TryGetValue(TKey, out TValue) nameWithType: Dictionary.TryGetValue(TKey, out TValue) fullName: System.Collections.Generic.Dictionary.TryGetValue(TKey, out TValue) nameWithType.vb: Dictionary(Of TKey, TValue).TryGetValue(TKey, TValue) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).TryGetValue(TKey, TValue) name.vb: TryGetValue(TKey, TValue) spec.csharp: - uid: System.Collections.Generic.Dictionary`2.TryGetValue(`0,`1@) name: TryGetValue isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trygetvalue - name: ( - name: TKey - name: ',' - name: " " - name: out - name: " " - name: TValue - name: ) spec.vb: - uid: System.Collections.Generic.Dictionary`2.TryGetValue(`0,`1@) name: TryGetValue isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trygetvalue - name: ( - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic.Dictionary`2.Comparer commentId: P:System.Collections.Generic.Dictionary`2.Comparer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.comparer name: Comparer nameWithType: Dictionary.Comparer fullName: System.Collections.Generic.Dictionary.Comparer nameWithType.vb: Dictionary(Of TKey, TValue).Comparer fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Comparer - uid: System.Collections.Generic.Dictionary`2.Count commentId: P:System.Collections.Generic.Dictionary`2.Count isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.count name: Count nameWithType: Dictionary.Count fullName: System.Collections.Generic.Dictionary.Count nameWithType.vb: Dictionary(Of TKey, TValue).Count fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Count - uid: System.Collections.Generic.Dictionary`2.Item(`0) commentId: P:System.Collections.Generic.Dictionary`2.Item(`0) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.item name: this[TKey] nameWithType: Dictionary.this[TKey] fullName: System.Collections.Generic.Dictionary.this[TKey] nameWithType.vb: Dictionary(Of TKey, TValue).this[](TKey) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).this[](TKey) name.vb: this[](TKey) spec.csharp: - name: this - name: '[' - name: TKey - name: ']' spec.vb: - uid: System.Collections.Generic.Dictionary`2.Item(`0) name: this[] isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.item - name: ( - name: TKey - name: ) - uid: System.Collections.Generic.Dictionary`2.Keys commentId: P:System.Collections.Generic.Dictionary`2.Keys isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.keys name: Keys nameWithType: Dictionary.Keys fullName: System.Collections.Generic.Dictionary.Keys nameWithType.vb: Dictionary(Of TKey, TValue).Keys fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Keys - uid: System.Collections.Generic.Dictionary`2.Values commentId: P:System.Collections.Generic.Dictionary`2.Values isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.values name: Values nameWithType: Dictionary.Values fullName: System.Collections.Generic.Dictionary.Values nameWithType.vb: Dictionary(Of TKey, TValue).Values fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue).Values - uid: adas_core.Domain.Utils.DictionaryEx.GetValue``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1) commentId: M:adas_core.Domain.Utils.DictionaryEx.GetValue``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1) isExternal: true href: adas_core.Domain.Utils.DictionaryEx.html#adas_core_Domain_Utils_DictionaryEx_GetValue__2_System_Collections_Generic_IDictionary___0___1____0___1_ name: GetValue(IDictionary, TK, TV) nameWithType: DictionaryEx.GetValue(IDictionary, TK, TV) fullName: adas_core.Domain.Utils.DictionaryEx.GetValue(System.Collections.Generic.IDictionary, TK, TV) nameWithType.vb: DictionaryEx.GetValue(Of TK, TV)(IDictionary(Of TK, TV), TK, TV) fullName.vb: adas_core.Domain.Utils.DictionaryEx.GetValue(Of TK, TV)(System.Collections.Generic.IDictionary(Of TK, TV), TK, TV) name.vb: GetValue(Of TK, TV)(IDictionary(Of TK, TV), TK, TV) spec.csharp: - uid: adas_core.Domain.Utils.DictionaryEx.GetValue``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1) name: GetValue href: adas_core.Domain.Utils.DictionaryEx.html#adas_core_Domain_Utils_DictionaryEx_GetValue__2_System_Collections_Generic_IDictionary___0___1____0___1_ - name: < - name: TK - name: ',' - name: " " - name: TV - name: '>' - name: ( - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: < - name: TK - name: ',' - name: " " - name: TV - name: '>' - name: ',' - name: " " - name: TK - name: ',' - name: " " - name: TV - name: ) spec.vb: - uid: adas_core.Domain.Utils.DictionaryEx.GetValue``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1) name: GetValue href: adas_core.Domain.Utils.DictionaryEx.html#adas_core_Domain_Utils_DictionaryEx_GetValue__2_System_Collections_Generic_IDictionary___0___1____0___1_ - name: ( - name: Of - name: " " - name: TK - name: ',' - name: " " - name: TV - name: ) - name: ( - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: ( - name: Of - name: " " - name: TK - name: ',' - name: " " - name: TV - name: ) - name: ',' - name: " " - name: TK - name: ',' - name: " " - name: TV - name: ) - uid: adas_core.Domain.Utils.DictionaryEx commentId: T:adas_core.Domain.Utils.DictionaryEx parent: adas_core.Domain.Utils href: adas_core.Domain.Utils.DictionaryEx.html name: DictionaryEx nameWithType: DictionaryEx fullName: adas_core.Domain.Utils.DictionaryEx - uid: adas_core.Domain.Utils.DictionaryEx.ToListString``2(System.Collections.Generic.IDictionary{``0,``1},System.String,System.String) commentId: M:adas_core.Domain.Utils.DictionaryEx.ToListString``2(System.Collections.Generic.IDictionary{``0,``1},System.String,System.String) isExternal: true href: adas_core.Domain.Utils.DictionaryEx.html#adas_core_Domain_Utils_DictionaryEx_ToListString__2_System_Collections_Generic_IDictionary___0___1__System_String_System_String_ name: ToListString(IDictionary, string, string) nameWithType: DictionaryEx.ToListString(IDictionary, string, string) fullName: adas_core.Domain.Utils.DictionaryEx.ToListString(System.Collections.Generic.IDictionary, string, string) nameWithType.vb: DictionaryEx.ToListString(Of TK, TV)(IDictionary(Of TK, TV), String, String) fullName.vb: adas_core.Domain.Utils.DictionaryEx.ToListString(Of TK, TV)(System.Collections.Generic.IDictionary(Of TK, TV), String, String) name.vb: ToListString(Of TK, TV)(IDictionary(Of TK, TV), String, String) spec.csharp: - uid: adas_core.Domain.Utils.DictionaryEx.ToListString``2(System.Collections.Generic.IDictionary{``0,``1},System.String,System.String) name: ToListString href: adas_core.Domain.Utils.DictionaryEx.html#adas_core_Domain_Utils_DictionaryEx_ToListString__2_System_Collections_Generic_IDictionary___0___1__System_String_System_String_ - name: < - name: TK - name: ',' - name: " " - name: TV - name: '>' - name: ( - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: < - name: TK - name: ',' - name: " " - name: TV - name: '>' - name: ',' - name: " " - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - uid: adas_core.Domain.Utils.DictionaryEx.ToListString``2(System.Collections.Generic.IDictionary{``0,``1},System.String,System.String) name: ToListString href: adas_core.Domain.Utils.DictionaryEx.html#adas_core_Domain_Utils_DictionaryEx_ToListString__2_System_Collections_Generic_IDictionary___0___1__System_String_System_String_ - name: ( - name: Of - name: " " - name: TK - name: ',' - name: " " - name: TV - name: ) - name: ( - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: ( - name: Of - name: " " - name: TK - name: ',' - name: " " - name: TV - name: ) - name: ',' - name: " " - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) isExternal: true href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ name: IsNumber(object) nameWithType: NumberUtils.IsNumber(object) fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object) nameWithType.vb: NumberUtils.IsNumber(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object) name.vb: IsNumber(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object) name: IsNumber href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.NumberUtils commentId: T:adas_core.Domain.Utils.NumberUtils parent: adas_core.Domain.Utils href: adas_core.Domain.Utils.NumberUtils.html name: NumberUtils nameWithType: NumberUtils fullName: adas_core.Domain.Utils.NumberUtils - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) isExternal: true href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ name: ToDouble(object) nameWithType: NumberUtils.ToDouble(object) fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object) nameWithType.vb: NumberUtils.ToDouble(Object) fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object) name.vb: ToDouble(Object) spec.csharp: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object) name: ToDouble href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) isExternal: true href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ name: ToStr(object) nameWithType: ObjectUtils.ToStr(object) fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object) nameWithType.vb: ObjectUtils.ToStr(Object) fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object) name.vb: ToStr(Object) spec.csharp: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object) name: ToStr href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_ - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: adas_core.Domain.Utils.ObjectUtils commentId: T:adas_core.Domain.Utils.ObjectUtils parent: adas_core.Domain.Utils href: adas_core.Domain.Utils.ObjectUtils.html name: ObjectUtils nameWithType: ObjectUtils fullName: adas_core.Domain.Utils.ObjectUtils - uid: adas_core.Domain.Utils.ComparableDictionary`2 commentId: T:adas_core.Domain.Utils.ComparableDictionary`2 href: adas_core.Domain.Utils.ComparableDictionary-2.html name: ComparableDictionary nameWithType: ComparableDictionary fullName: adas_core.Domain.Utils.ComparableDictionary nameWithType.vb: ComparableDictionary(Of TKey, TValue) fullName.vb: adas_core.Domain.Utils.ComparableDictionary(Of TKey, TValue) name.vb: ComparableDictionary(Of TKey, TValue) spec.csharp: - uid: adas_core.Domain.Utils.ComparableDictionary`2 name: ComparableDictionary href: adas_core.Domain.Utils.ComparableDictionary-2.html - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' spec.vb: - uid: adas_core.Domain.Utils.ComparableDictionary`2 name: ComparableDictionary href: adas_core.Domain.Utils.ComparableDictionary-2.html - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: adas_core.Domain.Utils.EquatableDictionary`2.Equals* commentId: Overload:adas_core.Domain.Utils.EquatableDictionary`2.Equals href: adas_core.Domain.Utils.EquatableDictionary-2.html#adas_core_Domain_Utils_EquatableDictionary_2_Equals_adas_core_Domain_Utils_ComparableDictionary__0__1__ name: Equals nameWithType: EquatableDictionary.Equals fullName: adas_core.Domain.Utils.EquatableDictionary.Equals nameWithType.vb: EquatableDictionary(Of TKey, TValue).Equals fullName.vb: adas_core.Domain.Utils.EquatableDictionary(Of TKey, TValue).Equals - uid: System.IEquatable{adas_core.Domain.Utils.ComparableDictionary{{TKey},{TValue}}}.Equals(adas_core.Domain.Utils.ComparableDictionary{{TKey},{TValue}}) commentId: M:System.IEquatable{adas_core.Domain.Utils.ComparableDictionary{`0,`1}}.Equals(adas_core.Domain.Utils.ComparableDictionary{`0,`1}) parent: System.IEquatable{adas_core.Domain.Utils.ComparableDictionary{{TKey},{TValue}}} definition: System.IEquatable`1.Equals(`0) href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals name: Equals(ComparableDictionary) nameWithType: IEquatable>.Equals(ComparableDictionary) fullName: System.IEquatable>.Equals(adas_core.Domain.Utils.ComparableDictionary) nameWithType.vb: IEquatable(Of ComparableDictionary(Of TKey, TValue)).Equals(ComparableDictionary(Of TKey, TValue)) fullName.vb: System.IEquatable(Of adas_core.Domain.Utils.ComparableDictionary(Of TKey, TValue)).Equals(adas_core.Domain.Utils.ComparableDictionary(Of TKey, TValue)) name.vb: Equals(ComparableDictionary(Of TKey, TValue)) spec.csharp: - uid: System.IEquatable{adas_core.Domain.Utils.ComparableDictionary{`0,`1}}.Equals(adas_core.Domain.Utils.ComparableDictionary{`0,`1}) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: ( - uid: adas_core.Domain.Utils.ComparableDictionary`2 name: ComparableDictionary href: adas_core.Domain.Utils.ComparableDictionary-2.html - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' - name: ) spec.vb: - uid: System.IEquatable{adas_core.Domain.Utils.ComparableDictionary{`0,`1}}.Equals(adas_core.Domain.Utils.ComparableDictionary{`0,`1}) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: ( - uid: adas_core.Domain.Utils.ComparableDictionary`2 name: ComparableDictionary href: adas_core.Domain.Utils.ComparableDictionary-2.html - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - name: ) - uid: adas_core.Domain.Utils.ComparableDictionary{{TKey},{TValue}} commentId: T:adas_core.Domain.Utils.ComparableDictionary{`0,`1} parent: adas_core.Domain.Utils definition: adas_core.Domain.Utils.ComparableDictionary`2 href: adas_core.Domain.Utils.ComparableDictionary-2.html name: ComparableDictionary nameWithType: ComparableDictionary fullName: adas_core.Domain.Utils.ComparableDictionary nameWithType.vb: ComparableDictionary(Of TKey, TValue) fullName.vb: adas_core.Domain.Utils.ComparableDictionary(Of TKey, TValue) name.vb: ComparableDictionary(Of TKey, TValue) spec.csharp: - uid: adas_core.Domain.Utils.ComparableDictionary`2 name: ComparableDictionary href: adas_core.Domain.Utils.ComparableDictionary-2.html - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' spec.vb: - uid: adas_core.Domain.Utils.ComparableDictionary`2 name: ComparableDictionary href: adas_core.Domain.Utils.ComparableDictionary-2.html - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Boolean commentId: T:System.Boolean parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean name: bool nameWithType: bool fullName: bool nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean - uid: System.IEquatable`1.Equals(`0) commentId: M:System.IEquatable`1.Equals(`0) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals name: Equals(T) nameWithType: IEquatable.Equals(T) fullName: System.IEquatable.Equals(T) nameWithType.vb: IEquatable(Of T).Equals(T) fullName.vb: System.IEquatable(Of T).Equals(T) spec.csharp: - uid: System.IEquatable`1.Equals(`0) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: ( - name: T - name: ) spec.vb: - uid: System.IEquatable`1.Equals(`0) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: ( - name: T - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) nameWithType: object.Equals(object) fullName: object.Equals(object) nameWithType.vb: Object.Equals(Object) fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode name: GetHashCode() nameWithType: object.GetHashCode() fullName: object.GetHashCode() nameWithType.vb: Object.GetHashCode() fullName.vb: Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) - uid: adas_core.Domain.Utils.EquatableDictionary`2.GetHashCode* commentId: Overload:adas_core.Domain.Utils.EquatableDictionary`2.GetHashCode href: adas_core.Domain.Utils.EquatableDictionary-2.html#adas_core_Domain_Utils_EquatableDictionary_2_GetHashCode name: GetHashCode nameWithType: EquatableDictionary.GetHashCode fullName: adas_core.Domain.Utils.EquatableDictionary.GetHashCode nameWithType.vb: EquatableDictionary(Of TKey, TValue).GetHashCode fullName.vb: adas_core.Domain.Utils.EquatableDictionary(Of TKey, TValue).GetHashCode - uid: System.Int32 commentId: T:System.Int32 parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 name: int nameWithType: int fullName: int nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer