### YamlMime:ManagedReference items: - uid: adas_core.Domain.Utils.CollectionsUtils commentId: T:adas_core.Domain.Utils.CollectionsUtils id: CollectionsUtils parent: adas_core.Domain.Utils children: - adas_core.Domain.Utils.CollectionsUtils.EmptyIfNull``1(System.Collections.Generic.List{``0}) - adas_core.Domain.Utils.CollectionsUtils.HasElements``1(System.Collections.Generic.List{``0}) - adas_core.Domain.Utils.CollectionsUtils.IfEmptyOrNull(System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String}) - adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull``1(System.Collections.Generic.List{``0}) - adas_core.Domain.Utils.CollectionsUtils.IsNotEmpty``1(System.Collections.Generic.List{``0}) - adas_core.Domain.Utils.CollectionsUtils.IsNullOrEmpty``1(System.Collections.Generic.List{``0}) - adas_core.Domain.Utils.CollectionsUtils.NullIfEmpty``1(System.Collections.Generic.List{``0}) - adas_core.Domain.Utils.CollectionsUtils.ToArray(System.Collections.ICollection,System.Type) langs: - csharp - vb name: CollectionsUtils nameWithType: CollectionsUtils fullName: adas_core.Domain.Utils.CollectionsUtils type: Class source: remote: path: adas-core.Domain/Utils/CollectionsUtils.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: CollectionsUtils path: ../../adas-core.Domain/Utils/CollectionsUtils.cs startLine: 7 assemblies: - adas-core.Domain namespace: adas_core.Domain.Utils summary: Provides static utility methods for working with collections. example: [] syntax: content: public static class CollectionsUtils content.vb: Public Module CollectionsUtils inheritance: - System.Object inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString - uid: adas_core.Domain.Utils.CollectionsUtils.IsNullOrEmpty``1(System.Collections.Generic.List{``0}) commentId: M:adas_core.Domain.Utils.CollectionsUtils.IsNullOrEmpty``1(System.Collections.Generic.List{``0}) id: IsNullOrEmpty``1(System.Collections.Generic.List{``0}) isExtensionMethod: true parent: adas_core.Domain.Utils.CollectionsUtils langs: - csharp - vb name: IsNullOrEmpty(List?) nameWithType: CollectionsUtils.IsNullOrEmpty(List?) fullName: adas_core.Domain.Utils.CollectionsUtils.IsNullOrEmpty(System.Collections.Generic.List?) type: Method source: remote: path: adas-core.Domain/Utils/CollectionsUtils.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: IsNullOrEmpty path: ../../adas-core.Domain/Utils/CollectionsUtils.cs startLine: 14 assemblies: - adas-core.Domain namespace: adas_core.Domain.Utils summary: Determines whether the specified list is null or contains no elements. example: [] syntax: content: public static bool IsNullOrEmpty(this List? value) parameters: - id: value type: System.Collections.Generic.List{{T}} description: The list to evaluate. typeParameters: - id: T return: type: System.Boolean description: true if the list is null or empty; otherwise, false. content.vb: Public Shared Function IsNullOrEmpty(Of T)(value As List(Of T)) As Boolean overload: adas_core.Domain.Utils.CollectionsUtils.IsNullOrEmpty* nameWithType.vb: CollectionsUtils.IsNullOrEmpty(Of T)(List(Of T)) fullName.vb: adas_core.Domain.Utils.CollectionsUtils.IsNullOrEmpty(Of T)(System.Collections.Generic.List(Of T)) name.vb: IsNullOrEmpty(Of T)(List(Of T)) - uid: adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull``1(System.Collections.Generic.List{``0}) commentId: M:adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull``1(System.Collections.Generic.List{``0}) id: IsEmptyOrNull``1(System.Collections.Generic.List{``0}) parent: adas_core.Domain.Utils.CollectionsUtils langs: - csharp - vb name: IsEmptyOrNull(List?) nameWithType: CollectionsUtils.IsEmptyOrNull(List?) fullName: adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull(System.Collections.Generic.List?) type: Method source: remote: path: adas-core.Domain/Utils/CollectionsUtils.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: IsEmptyOrNull path: ../../adas-core.Domain/Utils/CollectionsUtils.cs startLine: 24 assemblies: - adas-core.Domain namespace: adas_core.Domain.Utils summary: Determines whether the specified list is null or contains no elements. example: [] syntax: content: public static bool IsEmptyOrNull(List? value) parameters: - id: value type: System.Collections.Generic.List{{T}} description: The list to evaluate. typeParameters: - id: T return: type: System.Boolean description: true if the list is null or empty; otherwise, false. content.vb: Public Shared Function IsEmptyOrNull(Of T)(value As List(Of T)) As Boolean overload: adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull* nameWithType.vb: CollectionsUtils.IsEmptyOrNull(Of T)(List(Of T)) fullName.vb: adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull(Of T)(System.Collections.Generic.List(Of T)) name.vb: IsEmptyOrNull(Of T)(List(Of T)) - uid: adas_core.Domain.Utils.CollectionsUtils.HasElements``1(System.Collections.Generic.List{``0}) commentId: M:adas_core.Domain.Utils.CollectionsUtils.HasElements``1(System.Collections.Generic.List{``0}) id: HasElements``1(System.Collections.Generic.List{``0}) parent: adas_core.Domain.Utils.CollectionsUtils langs: - csharp - vb name: HasElements(List?) nameWithType: CollectionsUtils.HasElements(List?) fullName: adas_core.Domain.Utils.CollectionsUtils.HasElements(System.Collections.Generic.List?) type: Method source: remote: path: adas-core.Domain/Utils/CollectionsUtils.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: HasElements path: ../../adas-core.Domain/Utils/CollectionsUtils.cs startLine: 34 assemblies: - adas-core.Domain namespace: adas_core.Domain.Utils summary: Determines whether the specified list contains at least one element, returning false when the list is null or empty. example: [] syntax: content: public static bool HasElements(List? value) parameters: - id: value type: System.Collections.Generic.List{{T}} description: The list to evaluate. May be null. typeParameters: - id: T return: type: System.Boolean description: true if value is not null and contains one or more elements; otherwise, false. content.vb: Public Shared Function HasElements(Of T)(value As List(Of T)) As Boolean overload: adas_core.Domain.Utils.CollectionsUtils.HasElements* nameWithType.vb: CollectionsUtils.HasElements(Of T)(List(Of T)) fullName.vb: adas_core.Domain.Utils.CollectionsUtils.HasElements(Of T)(System.Collections.Generic.List(Of T)) name.vb: HasElements(Of T)(List(Of T)) - uid: adas_core.Domain.Utils.CollectionsUtils.IsNotEmpty``1(System.Collections.Generic.List{``0}) commentId: M:adas_core.Domain.Utils.CollectionsUtils.IsNotEmpty``1(System.Collections.Generic.List{``0}) id: IsNotEmpty``1(System.Collections.Generic.List{``0}) parent: adas_core.Domain.Utils.CollectionsUtils langs: - csharp - vb name: IsNotEmpty(List) nameWithType: CollectionsUtils.IsNotEmpty(List) fullName: adas_core.Domain.Utils.CollectionsUtils.IsNotEmpty(System.Collections.Generic.List) type: Method source: remote: path: adas-core.Domain/Utils/CollectionsUtils.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: IsNotEmpty path: ../../adas-core.Domain/Utils/CollectionsUtils.cs startLine: 44 assemblies: - adas-core.Domain namespace: adas_core.Domain.Utils summary: Determines whether the specified list is neither null nor empty by negating the result of . example: [] syntax: content: public static bool IsNotEmpty(List value) parameters: - id: value type: System.Collections.Generic.List{{T}} description: The list to evaluate. typeParameters: - id: T return: type: System.Boolean description: true if the list is not null and contains at least one element; otherwise, false. content.vb: Public Shared Function IsNotEmpty(Of T)(value As List(Of T)) As Boolean overload: adas_core.Domain.Utils.CollectionsUtils.IsNotEmpty* nameWithType.vb: CollectionsUtils.IsNotEmpty(Of T)(List(Of T)) fullName.vb: adas_core.Domain.Utils.CollectionsUtils.IsNotEmpty(Of T)(System.Collections.Generic.List(Of T)) name.vb: IsNotEmpty(Of T)(List(Of T)) - uid: adas_core.Domain.Utils.CollectionsUtils.EmptyIfNull``1(System.Collections.Generic.List{``0}) commentId: M:adas_core.Domain.Utils.CollectionsUtils.EmptyIfNull``1(System.Collections.Generic.List{``0}) id: EmptyIfNull``1(System.Collections.Generic.List{``0}) parent: adas_core.Domain.Utils.CollectionsUtils langs: - csharp - vb name: EmptyIfNull(List?) nameWithType: CollectionsUtils.EmptyIfNull(List?) fullName: adas_core.Domain.Utils.CollectionsUtils.EmptyIfNull(System.Collections.Generic.List?) type: Method source: remote: path: adas-core.Domain/Utils/CollectionsUtils.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: EmptyIfNull path: ../../adas-core.Domain/Utils/CollectionsUtils.cs startLine: 54 assemblies: - adas-core.Domain namespace: adas_core.Domain.Utils summary: Returns the provided list as-is when it is not null, or an empty list when it is null, ensuring a non-null result for safe iteration. example: [] syntax: content: public static List EmptyIfNull(List? value) parameters: - id: value type: System.Collections.Generic.List{{T}} description: The list to evaluate; may be null. typeParameters: - id: T return: type: System.Collections.Generic.List{{T}} description: The original value if it is not null; otherwise, an empty . content.vb: Public Shared Function EmptyIfNull(Of T)(value As List(Of T)) As List(Of T) overload: adas_core.Domain.Utils.CollectionsUtils.EmptyIfNull* nameWithType.vb: CollectionsUtils.EmptyIfNull(Of T)(List(Of T)) fullName.vb: adas_core.Domain.Utils.CollectionsUtils.EmptyIfNull(Of T)(System.Collections.Generic.List(Of T)) name.vb: EmptyIfNull(Of T)(List(Of T)) - uid: adas_core.Domain.Utils.CollectionsUtils.NullIfEmpty``1(System.Collections.Generic.List{``0}) commentId: M:adas_core.Domain.Utils.CollectionsUtils.NullIfEmpty``1(System.Collections.Generic.List{``0}) id: NullIfEmpty``1(System.Collections.Generic.List{``0}) parent: adas_core.Domain.Utils.CollectionsUtils langs: - csharp - vb name: NullIfEmpty(List) nameWithType: CollectionsUtils.NullIfEmpty(List) fullName: adas_core.Domain.Utils.CollectionsUtils.NullIfEmpty(System.Collections.Generic.List) type: Method source: remote: path: adas-core.Domain/Utils/CollectionsUtils.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: NullIfEmpty path: ../../adas-core.Domain/Utils/CollectionsUtils.cs startLine: 64 assemblies: - adas-core.Domain namespace: adas_core.Domain.Utils summary: Returns null when the specified list is null or contains no elements; otherwise, returns the list as-is. example: [] syntax: content: public static List? NullIfEmpty(List value) parameters: - id: value type: System.Collections.Generic.List{{T}} description: The list to evaluate. typeParameters: - id: T return: type: System.Collections.Generic.List{{T}} description: The original value when it is not null and not empty; otherwise, null. content.vb: Public Shared Function NullIfEmpty(Of T)(value As List(Of T)) As List(Of T) overload: adas_core.Domain.Utils.CollectionsUtils.NullIfEmpty* nameWithType.vb: CollectionsUtils.NullIfEmpty(Of T)(List(Of T)) fullName.vb: adas_core.Domain.Utils.CollectionsUtils.NullIfEmpty(Of T)(System.Collections.Generic.List(Of T)) name.vb: NullIfEmpty(Of T)(List(Of T)) - uid: adas_core.Domain.Utils.CollectionsUtils.ToArray(System.Collections.ICollection,System.Type) commentId: M:adas_core.Domain.Utils.CollectionsUtils.ToArray(System.Collections.ICollection,System.Type) id: ToArray(System.Collections.ICollection,System.Type) parent: adas_core.Domain.Utils.CollectionsUtils langs: - csharp - vb name: ToArray(ICollection, Type) nameWithType: CollectionsUtils.ToArray(ICollection, Type) fullName: adas_core.Domain.Utils.CollectionsUtils.ToArray(System.Collections.ICollection, System.Type) type: Method source: remote: path: adas-core.Domain/Utils/CollectionsUtils.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: ToArray path: ../../adas-core.Domain/Utils/CollectionsUtils.cs startLine: 75 assemblies: - adas-core.Domain namespace: adas_core.Domain.Utils summary: Converts the specified collection into a strongly typed array of the given element type. example: [] syntax: content: public static Array ToArray(ICollection collection, Type type) parameters: - id: collection type: System.Collections.ICollection description: The source collection whose elements are copied into the new array. - id: type type: System.Type description: The element of the array to create. return: type: System.Array description: A new of the specified type containing the elements copied from the collection. content.vb: Public Shared Function ToArray(collection As ICollection, type As Type) As Array overload: adas_core.Domain.Utils.CollectionsUtils.ToArray* - uid: adas_core.Domain.Utils.CollectionsUtils.IfEmptyOrNull(System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String}) commentId: M:adas_core.Domain.Utils.CollectionsUtils.IfEmptyOrNull(System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String}) id: IfEmptyOrNull(System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String}) parent: adas_core.Domain.Utils.CollectionsUtils langs: - csharp - vb name: IfEmptyOrNull(List, List) nameWithType: CollectionsUtils.IfEmptyOrNull(List, List) fullName: adas_core.Domain.Utils.CollectionsUtils.IfEmptyOrNull(System.Collections.Generic.List, System.Collections.Generic.List) type: Method source: remote: path: adas-core.Domain/Utils/CollectionsUtils.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: IfEmptyOrNull path: ../../adas-core.Domain/Utils/CollectionsUtils.cs startLine: 88 assemblies: - adas-core.Domain namespace: adas_core.Domain.Utils summary: Returns the provided default list when the input list is null or empty; otherwise returns the input list unchanged. example: [] syntax: content: public static List IfEmptyOrNull(List list, List defaultList) parameters: - id: list type: System.Collections.Generic.List{System.String} description: The list to evaluate for a null or empty state. - id: defaultList type: System.Collections.Generic.List{System.String} description: The fallback list returned when list is null or empty. return: type: System.Collections.Generic.List{System.String} description: The original list when it contains items; otherwise defaultList. content.vb: Public Shared Function IfEmptyOrNull(list As List(Of String), defaultList As List(Of String)) As List(Of String) overload: adas_core.Domain.Utils.CollectionsUtils.IfEmptyOrNull* nameWithType.vb: CollectionsUtils.IfEmptyOrNull(List(Of String), List(Of String)) fullName.vb: adas_core.Domain.Utils.CollectionsUtils.IfEmptyOrNull(System.Collections.Generic.List(Of String), System.Collections.Generic.List(Of String)) name.vb: IfEmptyOrNull(List(Of String), List(Of String)) 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.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.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.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: 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.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone name: MemberwiseClone() nameWithType: object.MemberwiseClone() fullName: object.MemberwiseClone() nameWithType.vb: Object.MemberwiseClone() fullName.vb: Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - 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 commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: adas_core.Domain.Utils.CollectionsUtils.IsNullOrEmpty* commentId: Overload:adas_core.Domain.Utils.CollectionsUtils.IsNullOrEmpty href: adas_core.Domain.Utils.CollectionsUtils.html#adas_core_Domain_Utils_CollectionsUtils_IsNullOrEmpty__1_System_Collections_Generic_List___0__ name: IsNullOrEmpty nameWithType: CollectionsUtils.IsNullOrEmpty fullName: adas_core.Domain.Utils.CollectionsUtils.IsNullOrEmpty - uid: System.Collections.Generic.List{{T}} commentId: T:System.Collections.Generic.List{`0} parent: System.Collections.Generic definition: System.Collections.Generic.List`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 name: List nameWithType: List fullName: System.Collections.Generic.List nameWithType.vb: List(Of T) fullName.vb: System.Collections.Generic.List(Of T) name.vb: List(Of T) spec.csharp: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: ( - name: Of - name: " " - name: T - 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.Collections.Generic.List`1 commentId: T:System.Collections.Generic.List`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 name: List nameWithType: List fullName: System.Collections.Generic.List nameWithType.vb: List(Of T) fullName.vb: System.Collections.Generic.List(Of T) name.vb: List(Of T) spec.csharp: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: ( - name: Of - name: " " - name: T - 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: adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull* commentId: Overload:adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull href: adas_core.Domain.Utils.CollectionsUtils.html#adas_core_Domain_Utils_CollectionsUtils_IsEmptyOrNull__1_System_Collections_Generic_List___0__ name: IsEmptyOrNull nameWithType: CollectionsUtils.IsEmptyOrNull fullName: adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull - uid: adas_core.Domain.Utils.CollectionsUtils.HasElements* commentId: Overload:adas_core.Domain.Utils.CollectionsUtils.HasElements href: adas_core.Domain.Utils.CollectionsUtils.html#adas_core_Domain_Utils_CollectionsUtils_HasElements__1_System_Collections_Generic_List___0__ name: HasElements nameWithType: CollectionsUtils.HasElements fullName: adas_core.Domain.Utils.CollectionsUtils.HasElements - uid: adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull``1(System.Collections.Generic.List{``0}) commentId: M:adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull``1(System.Collections.Generic.List{``0}) isExternal: true href: adas_core.Domain.Utils.CollectionsUtils.html#adas_core_Domain_Utils_CollectionsUtils_IsEmptyOrNull__1_System_Collections_Generic_List___0__ name: IsEmptyOrNull(List) nameWithType: CollectionsUtils.IsEmptyOrNull(List) fullName: adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull(System.Collections.Generic.List) nameWithType.vb: CollectionsUtils.IsEmptyOrNull(Of T)(List(Of T)) fullName.vb: adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull(Of T)(System.Collections.Generic.List(Of T)) name.vb: IsEmptyOrNull(Of T)(List(Of T)) spec.csharp: - uid: adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull``1(System.Collections.Generic.List{``0}) name: IsEmptyOrNull href: adas_core.Domain.Utils.CollectionsUtils.html#adas_core_Domain_Utils_CollectionsUtils_IsEmptyOrNull__1_System_Collections_Generic_List___0__ - name: < - name: T - name: '>' - name: ( - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - name: T - name: '>' - name: ) spec.vb: - uid: adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull``1(System.Collections.Generic.List{``0}) name: IsEmptyOrNull href: adas_core.Domain.Utils.CollectionsUtils.html#adas_core_Domain_Utils_CollectionsUtils_IsEmptyOrNull__1_System_Collections_Generic_List___0__ - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: ( - name: Of - name: " " - name: T - name: ) - name: ) - uid: adas_core.Domain.Utils.CollectionsUtils.IsNotEmpty* commentId: Overload:adas_core.Domain.Utils.CollectionsUtils.IsNotEmpty href: adas_core.Domain.Utils.CollectionsUtils.html#adas_core_Domain_Utils_CollectionsUtils_IsNotEmpty__1_System_Collections_Generic_List___0__ name: IsNotEmpty nameWithType: CollectionsUtils.IsNotEmpty fullName: adas_core.Domain.Utils.CollectionsUtils.IsNotEmpty - uid: adas_core.Domain.Utils.CollectionsUtils.EmptyIfNull* commentId: Overload:adas_core.Domain.Utils.CollectionsUtils.EmptyIfNull href: adas_core.Domain.Utils.CollectionsUtils.html#adas_core_Domain_Utils_CollectionsUtils_EmptyIfNull__1_System_Collections_Generic_List___0__ name: EmptyIfNull nameWithType: CollectionsUtils.EmptyIfNull fullName: adas_core.Domain.Utils.CollectionsUtils.EmptyIfNull - uid: adas_core.Domain.Utils.CollectionsUtils.NullIfEmpty* commentId: Overload:adas_core.Domain.Utils.CollectionsUtils.NullIfEmpty href: adas_core.Domain.Utils.CollectionsUtils.html#adas_core_Domain_Utils_CollectionsUtils_NullIfEmpty__1_System_Collections_Generic_List___0__ name: NullIfEmpty nameWithType: CollectionsUtils.NullIfEmpty fullName: adas_core.Domain.Utils.CollectionsUtils.NullIfEmpty - uid: System.Type commentId: T:System.Type parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.type name: Type nameWithType: Type fullName: System.Type - uid: System.Array commentId: T:System.Array parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.array name: Array nameWithType: Array fullName: System.Array - uid: adas_core.Domain.Utils.CollectionsUtils.ToArray* commentId: Overload:adas_core.Domain.Utils.CollectionsUtils.ToArray href: adas_core.Domain.Utils.CollectionsUtils.html#adas_core_Domain_Utils_CollectionsUtils_ToArray_System_Collections_ICollection_System_Type_ name: ToArray nameWithType: CollectionsUtils.ToArray fullName: adas_core.Domain.Utils.CollectionsUtils.ToArray - 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 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: adas_core.Domain.Utils.CollectionsUtils.IfEmptyOrNull* commentId: Overload:adas_core.Domain.Utils.CollectionsUtils.IfEmptyOrNull href: adas_core.Domain.Utils.CollectionsUtils.html#adas_core_Domain_Utils_CollectionsUtils_IfEmptyOrNull_System_Collections_Generic_List_System_String__System_Collections_Generic_List_System_String__ name: IfEmptyOrNull nameWithType: CollectionsUtils.IfEmptyOrNull fullName: adas_core.Domain.Utils.CollectionsUtils.IfEmptyOrNull - uid: System.Collections.Generic.List{System.String} commentId: T:System.Collections.Generic.List{System.String} parent: System.Collections.Generic definition: System.Collections.Generic.List`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 name: List nameWithType: List fullName: System.Collections.Generic.List nameWithType.vb: List(Of String) fullName.vb: System.Collections.Generic.List(Of String) name.vb: List(Of String) spec.csharp: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: < - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: '>' spec.vb: - uid: System.Collections.Generic.List`1 name: List isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 - name: ( - name: Of - name: " " - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: )