### YamlMime:ManagedReference items: - uid: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility commentId: T:Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility id: UnsafeCollectionUtility parent: Misaki.HighPerformance.LowLevel.Utilities children: - Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeArray``1(``0[],Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle) - Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeList``1(System.Collections.Generic.List{``0},Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle) langs: - csharp - vb name: UnsafeCollectionUtility nameWithType: UnsafeCollectionUtility fullName: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility type: Class source: remote: path: src/Misaki.HighPerformance.LowLevel/Utilities/UnsafeCollectionUtility.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: UnsafeCollectionUtility path: src/Misaki.HighPerformance.LowLevel/Utilities/UnsafeCollectionUtility.cs startLine: 11 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel.Utilities summary: >- Provides extension methods for copying elements between unsafe collections and spans, converting collections to arrays or lists, and searching for values. example: [] syntax: content: public static class UnsafeCollectionUtility content.vb: Public Module UnsafeCollectionUtility 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: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeArray``1(``0[],Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle) commentId: M:Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeArray``1(``0[],Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle) id: ToUnsafeArray``1(``0[],Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle) isExtensionMethod: true parent: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility langs: - csharp - vb name: ToUnsafeArray(T[], AllocationHandle) nameWithType: UnsafeCollectionUtility.ToUnsafeArray(T[], AllocationHandle) fullName: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeArray(T[], Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle) type: Method source: remote: path: src/Misaki.HighPerformance.LowLevel/Utilities/UnsafeCollectionUtility.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: ToUnsafeArray path: src/Misaki.HighPerformance.LowLevel/Utilities/UnsafeCollectionUtility.cs startLine: 47 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel.Utilities summary: Converts a managed array to an UnsafeArray by copying its elements to unmanaged memory. example: [] syntax: content: 'public static UnsafeArray ToUnsafeArray(this T[] source, AllocationHandle allocationHandle) where T : unmanaged' parameters: - id: source type: '{T}[]' description: The managed array to convert. - id: allocationHandle type: Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle description: The allocation handle to use for memory allocation of the UnsafeArray. typeParameters: - id: T description: The type of elements in the array, which must be unmanaged. return: type: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray{{T}} description: A new UnsafeArray containing a copy of the source array elements. content.vb: Public Shared Function ToUnsafeArray(Of T As Structure)(source As T(), allocationHandle As AllocationHandle) As UnsafeArray(Of T) overload: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeArray* nameWithType.vb: UnsafeCollectionUtility.ToUnsafeArray(Of T)(T(), AllocationHandle) fullName.vb: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeArray(Of T)(T(), Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle) name.vb: ToUnsafeArray(Of T)(T(), AllocationHandle) - uid: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeList``1(System.Collections.Generic.List{``0},Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle) commentId: M:Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeList``1(System.Collections.Generic.List{``0},Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle) id: ToUnsafeList``1(System.Collections.Generic.List{``0},Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle) isExtensionMethod: true parent: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility langs: - csharp - vb name: ToUnsafeList(List, AllocationHandle) nameWithType: UnsafeCollectionUtility.ToUnsafeList(List, AllocationHandle) fullName: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeList(System.Collections.Generic.List, Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle) type: Method source: remote: path: src/Misaki.HighPerformance.LowLevel/Utilities/UnsafeCollectionUtility.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: ToUnsafeList path: src/Misaki.HighPerformance.LowLevel/Utilities/UnsafeCollectionUtility.cs startLine: 66 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel.Utilities summary: Converts a managed List to an UnsafeList by copying its elements to unmanaged memory. example: [] syntax: content: 'public static UnsafeList ToUnsafeList(this List source, AllocationHandle allocationHandle) where T : unmanaged' parameters: - id: source type: System.Collections.Generic.List{{T}} description: The managed List to convert. - id: allocationHandle type: Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle description: The allocation handle to use for memory allocation of the UnsafeList. typeParameters: - id: T description: The type of elements in the list, which must be unmanaged. return: type: Misaki.HighPerformance.LowLevel.Collections.UnsafeList{{T}} description: A new UnsafeList containing a copy of the source list elements. content.vb: Public Shared Function ToUnsafeList(Of T As Structure)(source As List(Of T), allocationHandle As AllocationHandle) As UnsafeList(Of T) overload: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeList* nameWithType.vb: UnsafeCollectionUtility.ToUnsafeList(Of T)(List(Of T), AllocationHandle) fullName.vb: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeList(Of T)(System.Collections.Generic.List(Of T), Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle) name.vb: ToUnsafeList(Of T)(List(Of T), AllocationHandle) references: - uid: Misaki.HighPerformance.LowLevel.Utilities commentId: N:Misaki.HighPerformance.LowLevel.Utilities href: Misaki.html name: Misaki.HighPerformance.LowLevel.Utilities nameWithType: Misaki.HighPerformance.LowLevel.Utilities fullName: Misaki.HighPerformance.LowLevel.Utilities spec.csharp: - uid: Misaki name: Misaki href: Misaki.html - name: . - uid: Misaki.HighPerformance name: HighPerformance href: Misaki.HighPerformance.html - name: . - uid: Misaki.HighPerformance.LowLevel name: LowLevel href: Misaki.HighPerformance.LowLevel.html - name: . - uid: Misaki.HighPerformance.LowLevel.Utilities name: Utilities href: Misaki.HighPerformance.LowLevel.Utilities.html spec.vb: - uid: Misaki name: Misaki href: Misaki.html - name: . - uid: Misaki.HighPerformance name: HighPerformance href: Misaki.HighPerformance.html - name: . - uid: Misaki.HighPerformance.LowLevel name: LowLevel href: Misaki.HighPerformance.LowLevel.html - name: . - uid: Misaki.HighPerformance.LowLevel.Utilities name: Utilities href: Misaki.HighPerformance.LowLevel.Utilities.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: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeArray* commentId: Overload:Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeArray href: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.html#Misaki_HighPerformance_LowLevel_Utilities_UnsafeCollectionUtility_ToUnsafeArray__1___0___Misaki_HighPerformance_LowLevel_Buffer_AllocationHandle_ name: ToUnsafeArray nameWithType: UnsafeCollectionUtility.ToUnsafeArray fullName: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeArray - uid: '{T}[]' isExternal: true name: T[] nameWithType: T[] fullName: T[] nameWithType.vb: T() fullName.vb: T() name.vb: T() spec.csharp: - name: T - name: '[' - name: ']' spec.vb: - name: T - name: ( - name: ) - uid: Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle commentId: T:Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle parent: Misaki.HighPerformance.LowLevel.Buffer href: Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle.html name: AllocationHandle nameWithType: AllocationHandle fullName: Misaki.HighPerformance.LowLevel.Buffer.AllocationHandle - uid: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray{{T}} commentId: T:Misaki.HighPerformance.LowLevel.Collections.UnsafeArray{`0} parent: Misaki.HighPerformance.LowLevel.Collections definition: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray`1 href: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray-1.html name: UnsafeArray nameWithType: UnsafeArray fullName: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray nameWithType.vb: UnsafeArray(Of T) fullName.vb: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray(Of T) name.vb: UnsafeArray(Of T) spec.csharp: - uid: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray`1 name: UnsafeArray href: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray-1.html - name: < - name: T - name: '>' spec.vb: - uid: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray`1 name: UnsafeArray href: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray-1.html - name: ( - name: Of - name: " " - name: T - name: ) - uid: Misaki.HighPerformance.LowLevel.Buffer commentId: N:Misaki.HighPerformance.LowLevel.Buffer href: Misaki.html name: Misaki.HighPerformance.LowLevel.Buffer nameWithType: Misaki.HighPerformance.LowLevel.Buffer fullName: Misaki.HighPerformance.LowLevel.Buffer spec.csharp: - uid: Misaki name: Misaki href: Misaki.html - name: . - uid: Misaki.HighPerformance name: HighPerformance href: Misaki.HighPerformance.html - name: . - uid: Misaki.HighPerformance.LowLevel name: LowLevel href: Misaki.HighPerformance.LowLevel.html - name: . - uid: Misaki.HighPerformance.LowLevel.Buffer name: Buffer href: Misaki.HighPerformance.LowLevel.Buffer.html spec.vb: - uid: Misaki name: Misaki href: Misaki.html - name: . - uid: Misaki.HighPerformance name: HighPerformance href: Misaki.HighPerformance.html - name: . - uid: Misaki.HighPerformance.LowLevel name: LowLevel href: Misaki.HighPerformance.LowLevel.html - name: . - uid: Misaki.HighPerformance.LowLevel.Buffer name: Buffer href: Misaki.HighPerformance.LowLevel.Buffer.html - uid: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray`1 commentId: T:Misaki.HighPerformance.LowLevel.Collections.UnsafeArray`1 parent: Misaki.HighPerformance.LowLevel.Collections href: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray-1.html name: UnsafeArray nameWithType: UnsafeArray fullName: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray nameWithType.vb: UnsafeArray(Of T) fullName.vb: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray(Of T) name.vb: UnsafeArray(Of T) spec.csharp: - uid: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray`1 name: UnsafeArray href: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray-1.html - name: < - name: T - name: '>' spec.vb: - uid: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray`1 name: UnsafeArray href: Misaki.HighPerformance.LowLevel.Collections.UnsafeArray-1.html - name: ( - name: Of - name: " " - name: T - name: ) - uid: Misaki.HighPerformance.LowLevel.Collections commentId: N:Misaki.HighPerformance.LowLevel.Collections href: Misaki.html name: Misaki.HighPerformance.LowLevel.Collections nameWithType: Misaki.HighPerformance.LowLevel.Collections fullName: Misaki.HighPerformance.LowLevel.Collections spec.csharp: - uid: Misaki name: Misaki href: Misaki.html - name: . - uid: Misaki.HighPerformance name: HighPerformance href: Misaki.HighPerformance.html - name: . - uid: Misaki.HighPerformance.LowLevel name: LowLevel href: Misaki.HighPerformance.LowLevel.html - name: . - uid: Misaki.HighPerformance.LowLevel.Collections name: Collections href: Misaki.HighPerformance.LowLevel.Collections.html spec.vb: - uid: Misaki name: Misaki href: Misaki.html - name: . - uid: Misaki.HighPerformance name: HighPerformance href: Misaki.HighPerformance.html - name: . - uid: Misaki.HighPerformance.LowLevel name: LowLevel href: Misaki.HighPerformance.LowLevel.html - name: . - uid: Misaki.HighPerformance.LowLevel.Collections name: Collections href: Misaki.HighPerformance.LowLevel.Collections.html - uid: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeList* commentId: Overload:Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeList href: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.html#Misaki_HighPerformance_LowLevel_Utilities_UnsafeCollectionUtility_ToUnsafeList__1_System_Collections_Generic_List___0__Misaki_HighPerformance_LowLevel_Buffer_AllocationHandle_ name: ToUnsafeList nameWithType: UnsafeCollectionUtility.ToUnsafeList fullName: Misaki.HighPerformance.LowLevel.Utilities.UnsafeCollectionUtility.ToUnsafeList - 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: Misaki.HighPerformance.LowLevel.Collections.UnsafeList{{T}} commentId: T:Misaki.HighPerformance.LowLevel.Collections.UnsafeList{``0} parent: Misaki.HighPerformance.LowLevel.Collections definition: Misaki.HighPerformance.LowLevel.Collections.UnsafeList`1 href: Misaki.HighPerformance.LowLevel.Collections.UnsafeList-1.html name: UnsafeList nameWithType: UnsafeList fullName: Misaki.HighPerformance.LowLevel.Collections.UnsafeList nameWithType.vb: UnsafeList(Of T) fullName.vb: Misaki.HighPerformance.LowLevel.Collections.UnsafeList(Of T) name.vb: UnsafeList(Of T) spec.csharp: - uid: Misaki.HighPerformance.LowLevel.Collections.UnsafeList`1 name: UnsafeList href: Misaki.HighPerformance.LowLevel.Collections.UnsafeList-1.html - name: < - name: T - name: '>' spec.vb: - uid: Misaki.HighPerformance.LowLevel.Collections.UnsafeList`1 name: UnsafeList href: Misaki.HighPerformance.LowLevel.Collections.UnsafeList-1.html - name: ( - name: Of - name: " " - name: T - name: ) - 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: Misaki.HighPerformance.LowLevel.Collections.UnsafeList`1 commentId: T:Misaki.HighPerformance.LowLevel.Collections.UnsafeList`1 parent: Misaki.HighPerformance.LowLevel.Collections href: Misaki.HighPerformance.LowLevel.Collections.UnsafeList-1.html name: UnsafeList nameWithType: UnsafeList fullName: Misaki.HighPerformance.LowLevel.Collections.UnsafeList nameWithType.vb: UnsafeList(Of T) fullName.vb: Misaki.HighPerformance.LowLevel.Collections.UnsafeList(Of T) name.vb: UnsafeList(Of T) spec.csharp: - uid: Misaki.HighPerformance.LowLevel.Collections.UnsafeList`1 name: UnsafeList href: Misaki.HighPerformance.LowLevel.Collections.UnsafeList-1.html - name: < - name: T - name: '>' spec.vb: - uid: Misaki.HighPerformance.LowLevel.Collections.UnsafeList`1 name: UnsafeList href: Misaki.HighPerformance.LowLevel.Collections.UnsafeList-1.html - name: ( - name: Of - name: " " - name: T - name: )