rama creada apartir de master en j

This commit is contained in:
jrojas
2026-06-26 10:29:23 +02:00
parent 319fd3dfb0
commit c1517fda87
2810 changed files with 1927392 additions and 25392 deletions
@@ -0,0 +1,921 @@
### 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<T>(List<T>?)
nameWithType: CollectionsUtils.IsNullOrEmpty<T>(List<T>?)
fullName: adas_core.Domain.Utils.CollectionsUtils.IsNullOrEmpty<T>(System.Collections.Generic.List<T>?)
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<T>(this List<T>? value)
parameters:
- id: value
type: System.Collections.Generic.List{{T}}
description: The list to evaluate.
typeParameters:
- id: T
return:
type: System.Boolean
description: <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> if the list is null or empty; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
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<T>(List<T>?)
nameWithType: CollectionsUtils.IsEmptyOrNull<T>(List<T>?)
fullName: adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull<T>(System.Collections.Generic.List<T>?)
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 <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a> or contains no elements.
example: []
syntax:
content: public static bool IsEmptyOrNull<T>(List<T>? value)
parameters:
- id: value
type: System.Collections.Generic.List{{T}}
description: The list to evaluate.
typeParameters:
- id: T
return:
type: System.Boolean
description: <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> if the list is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a> or empty; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
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<T>(List<T>?)
nameWithType: CollectionsUtils.HasElements<T>(List<T>?)
fullName: adas_core.Domain.Utils.CollectionsUtils.HasElements<T>(System.Collections.Generic.List<T>?)
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 <code>false</code> when the list is <code>null</code> or empty.
example: []
syntax:
content: public static bool HasElements<T>(List<T>? value)
parameters:
- id: value
type: System.Collections.Generic.List{{T}}
description: The list to evaluate. May be <code>null</code>.
typeParameters:
- id: T
return:
type: System.Boolean
description: <code>true</code> if <code class="paramref">value</code> is not <code>null</code> and contains one or more elements; otherwise, <code>false</code>.
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<T>(List<T>)
nameWithType: CollectionsUtils.IsNotEmpty<T>(List<T>)
fullName: adas_core.Domain.Utils.CollectionsUtils.IsNotEmpty<T>(System.Collections.Generic.List<T>)
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 <xref href="adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull%60%601(System.Collections.Generic.List%7b%60%600%7d)" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: public static bool IsNotEmpty<T>(List<T> value)
parameters:
- id: value
type: System.Collections.Generic.List{{T}}
description: The list to evaluate.
typeParameters:
- id: T
return:
type: System.Boolean
description: <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">true</a> if the list is not null and contains at least one element; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
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<T>(List<T>?)
nameWithType: CollectionsUtils.EmptyIfNull<T>(List<T>?)
fullName: adas_core.Domain.Utils.CollectionsUtils.EmptyIfNull<T>(System.Collections.Generic.List<T>?)
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<T> EmptyIfNull<T>(List<T>? value)
parameters:
- id: value
type: System.Collections.Generic.List{{T}}
description: The list to evaluate; may be <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a>.
typeParameters:
- id: T
return:
type: System.Collections.Generic.List{{T}}
description: The original <code class="paramref">value</code> if it is not null; otherwise, an empty <xref href="System.Collections.Generic.List%601" data-throw-if-not-resolved="false"></xref>.
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<T>(List<T>)
nameWithType: CollectionsUtils.NullIfEmpty<T>(List<T>)
fullName: adas_core.Domain.Utils.CollectionsUtils.NullIfEmpty<T>(System.Collections.Generic.List<T>)
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 <code>null</code> when the specified list is null or contains no elements; otherwise, returns the list as-is.
example: []
syntax:
content: public static List<T>? NullIfEmpty<T>(List<T> 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 <code class="paramref">value</code> when it is not null and not empty; otherwise, <code>null</code>.
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 <xref href="System.Type" data-throw-if-not-resolved="false"></xref> of the array to create.
return:
type: System.Array
description: A new <xref href="System.Array" data-throw-if-not-resolved="false"></xref> 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<string>, List<string>)
nameWithType: CollectionsUtils.IfEmptyOrNull(List<string>, List<string>)
fullName: adas_core.Domain.Utils.CollectionsUtils.IfEmptyOrNull(System.Collections.Generic.List<string>, System.Collections.Generic.List<string>)
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<string> IfEmptyOrNull(List<string> list, List<string> 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 <code class="paramref">list</code> is null or empty.
return:
type: System.Collections.Generic.List{System.String}
description: The original <code class="paramref">list</code> when it contains items; otherwise <code class="paramref">defaultList</code>.
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<T>
nameWithType: List<T>
fullName: System.Collections.Generic.List<T>
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<T>
nameWithType: List<T>
fullName: System.Collections.Generic.List<T>
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<T>(List<T>)
nameWithType: CollectionsUtils.IsEmptyOrNull<T>(List<T>)
fullName: adas_core.Domain.Utils.CollectionsUtils.IsEmptyOrNull<T>(System.Collections.Generic.List<T>)
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<string>
nameWithType: List<string>
fullName: System.Collections.Generic.List<string>
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: )