### YamlMime:ManagedReference items: - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1 commentId: T:Misaki.HighPerformance.LowLevel.SharedPtr`1 id: SharedPtr`1 parent: Misaki.HighPerformance.LowLevel children: - Misaki.HighPerformance.LowLevel.SharedPtr`1.#ctor(`0*) - Misaki.HighPerformance.LowLevel.SharedPtr`1.Equals(Misaki.HighPerformance.LowLevel.SharedPtr{`0}) - Misaki.HighPerformance.LowLevel.SharedPtr`1.Equals(System.Object) - Misaki.HighPerformance.LowLevel.SharedPtr`1.Get - Misaki.HighPerformance.LowLevel.SharedPtr`1.GetHashCode - Misaki.HighPerformance.LowLevel.SharedPtr`1.GetRef - Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Equality(Misaki.HighPerformance.LowLevel.SharedPtr{`0},Misaki.HighPerformance.LowLevel.SharedPtr{`0}) - Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Implicit(Misaki.HighPerformance.LowLevel.SharedPtr{`0})~`0* - Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Implicit(`0*)~Misaki.HighPerformance.LowLevel.SharedPtr{`0} - Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Inequality(Misaki.HighPerformance.LowLevel.SharedPtr{`0},Misaki.HighPerformance.LowLevel.SharedPtr{`0}) langs: - csharp - vb name: SharedPtr nameWithType: SharedPtr fullName: Misaki.HighPerformance.LowLevel.SharedPtr type: Struct source: remote: path: src/Misaki.HighPerformance.LowLevel/Ptr.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: SharedPtr path: src/Misaki.HighPerformance.LowLevel/Ptr.cs startLine: 12 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel summary: Represents a strongly-typed, read-only pointer to an unmanaged value of type T. remarks: When a pointer is wrapped in this struct, it indicates that the code does not intend to manage the lifetime of the data being pointed to. example: [] syntax: content: 'public readonly struct SharedPtr : IEquatable> where T : unmanaged' typeParameters: - id: T description: The unmanaged type to which the pointer refers. content.vb: Public Structure SharedPtr(Of T As Structure) Implements IEquatable(Of SharedPtr(Of T)) implements: - System.IEquatable{Misaki.HighPerformance.LowLevel.SharedPtr`1} inheritedMembers: - System.ValueType.ToString - System.Object.Equals(System.Object,System.Object) - System.Object.GetType - System.Object.ReferenceEquals(System.Object,System.Object) nameWithType.vb: SharedPtr(Of T) fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T) name.vb: SharedPtr(Of T) - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.#ctor(`0*) commentId: M:Misaki.HighPerformance.LowLevel.SharedPtr`1.#ctor(`0*) id: '#ctor(`0*)' parent: Misaki.HighPerformance.LowLevel.SharedPtr`1 langs: - csharp - vb name: SharedPtr(T*) nameWithType: SharedPtr.SharedPtr(T*) fullName: Misaki.HighPerformance.LowLevel.SharedPtr.SharedPtr(T*) type: Constructor source: remote: path: src/Misaki.HighPerformance.LowLevel/Ptr.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: .ctor path: src/Misaki.HighPerformance.LowLevel/Ptr.cs startLine: 17 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel syntax: content: public SharedPtr(T* value) parameters: - id: value type: '{T}*' content.vb: Public Sub New(value As T*) overload: Misaki.HighPerformance.LowLevel.SharedPtr`1.#ctor* nameWithType.vb: SharedPtr(Of T).New(T*) fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).New(T*) name.vb: New(T*) - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.Get commentId: M:Misaki.HighPerformance.LowLevel.SharedPtr`1.Get id: Get parent: Misaki.HighPerformance.LowLevel.SharedPtr`1 langs: - csharp - vb name: Get() nameWithType: SharedPtr.Get() fullName: Misaki.HighPerformance.LowLevel.SharedPtr.Get() type: Method source: remote: path: src/Misaki.HighPerformance.LowLevel/Ptr.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: Get path: src/Misaki.HighPerformance.LowLevel/Ptr.cs startLine: 22 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel syntax: content: public T* Get() return: type: '{T}*' content.vb: Public Function [Get]() As T* overload: Misaki.HighPerformance.LowLevel.SharedPtr`1.Get* nameWithType.vb: SharedPtr(Of T).Get() fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).Get() - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.GetRef commentId: M:Misaki.HighPerformance.LowLevel.SharedPtr`1.GetRef id: GetRef parent: Misaki.HighPerformance.LowLevel.SharedPtr`1 langs: - csharp - vb name: GetRef() nameWithType: SharedPtr.GetRef() fullName: Misaki.HighPerformance.LowLevel.SharedPtr.GetRef() type: Method source: remote: path: src/Misaki.HighPerformance.LowLevel/Ptr.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: GetRef path: src/Misaki.HighPerformance.LowLevel/Ptr.cs startLine: 27 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel syntax: content: public ref T GetRef() return: type: '{T}' content.vb: Public ByRef Function GetRef() As T overload: Misaki.HighPerformance.LowLevel.SharedPtr`1.GetRef* nameWithType.vb: SharedPtr(Of T).GetRef() fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).GetRef() - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.Equals(Misaki.HighPerformance.LowLevel.SharedPtr{`0}) commentId: M:Misaki.HighPerformance.LowLevel.SharedPtr`1.Equals(Misaki.HighPerformance.LowLevel.SharedPtr{`0}) id: Equals(Misaki.HighPerformance.LowLevel.SharedPtr{`0}) parent: Misaki.HighPerformance.LowLevel.SharedPtr`1 langs: - csharp - vb name: Equals(SharedPtr) nameWithType: SharedPtr.Equals(SharedPtr) fullName: Misaki.HighPerformance.LowLevel.SharedPtr.Equals(Misaki.HighPerformance.LowLevel.SharedPtr) type: Method source: remote: path: src/Misaki.HighPerformance.LowLevel/Ptr.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: Equals path: src/Misaki.HighPerformance.LowLevel/Ptr.cs startLine: 32 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel summary: Indicates whether the current object is equal to another object of the same type. example: [] syntax: content: public bool Equals(SharedPtr other) parameters: - id: other type: Misaki.HighPerformance.LowLevel.SharedPtr`1 description: An object to compare with this object. return: type: System.Boolean description: true if the current object is equal to the other parameter; otherwise, false. content.vb: Public Function Equals(other As SharedPtr(Of T)) As Boolean overload: Misaki.HighPerformance.LowLevel.SharedPtr`1.Equals* implements: - System.IEquatable{Misaki.HighPerformance.LowLevel.SharedPtr`1}.Equals(Misaki.HighPerformance.LowLevel.SharedPtr{{T}}) nameWithType.vb: SharedPtr(Of T).Equals(SharedPtr(Of T)) fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).Equals(Misaki.HighPerformance.LowLevel.SharedPtr(Of T)) name.vb: Equals(SharedPtr(Of T)) - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.Equals(System.Object) commentId: M:Misaki.HighPerformance.LowLevel.SharedPtr`1.Equals(System.Object) id: Equals(System.Object) parent: Misaki.HighPerformance.LowLevel.SharedPtr`1 langs: - csharp - vb name: Equals(object?) nameWithType: SharedPtr.Equals(object?) fullName: Misaki.HighPerformance.LowLevel.SharedPtr.Equals(object?) type: Method source: remote: path: src/Misaki.HighPerformance.LowLevel/Ptr.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: Equals path: src/Misaki.HighPerformance.LowLevel/Ptr.cs startLine: 37 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel summary: Indicates whether this instance and a specified object are equal. example: [] syntax: content: public override bool Equals(object? obj) parameters: - id: obj type: System.Object description: The object to compare with the current instance. return: type: System.Boolean description: true if obj and this instance are the same type and represent the same value; otherwise, false. content.vb: Public Overrides Function Equals(obj As Object) As Boolean overridden: System.ValueType.Equals(System.Object) overload: Misaki.HighPerformance.LowLevel.SharedPtr`1.Equals* nameWithType.vb: SharedPtr(Of T).Equals(Object) fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).Equals(Object) name.vb: Equals(Object) - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.GetHashCode commentId: M:Misaki.HighPerformance.LowLevel.SharedPtr`1.GetHashCode id: GetHashCode parent: Misaki.HighPerformance.LowLevel.SharedPtr`1 langs: - csharp - vb name: GetHashCode() nameWithType: SharedPtr.GetHashCode() fullName: Misaki.HighPerformance.LowLevel.SharedPtr.GetHashCode() type: Method source: remote: path: src/Misaki.HighPerformance.LowLevel/Ptr.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: GetHashCode path: src/Misaki.HighPerformance.LowLevel/Ptr.cs startLine: 42 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel summary: Returns the hash code for this instance. example: [] syntax: content: public override int GetHashCode() return: type: System.Int32 description: A 32-bit signed integer that is the hash code for this instance. content.vb: Public Overrides Function GetHashCode() As Integer overridden: System.ValueType.GetHashCode overload: Misaki.HighPerformance.LowLevel.SharedPtr`1.GetHashCode* nameWithType.vb: SharedPtr(Of T).GetHashCode() fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).GetHashCode() - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Implicit(Misaki.HighPerformance.LowLevel.SharedPtr{`0})~`0* commentId: M:Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Implicit(Misaki.HighPerformance.LowLevel.SharedPtr{`0})~`0* id: op_Implicit(Misaki.HighPerformance.LowLevel.SharedPtr{`0})~`0* parent: Misaki.HighPerformance.LowLevel.SharedPtr`1 langs: - csharp - vb name: implicit operator T*(SharedPtr) nameWithType: SharedPtr.implicit operator T*(SharedPtr) fullName: Misaki.HighPerformance.LowLevel.SharedPtr.implicit operator T*(Misaki.HighPerformance.LowLevel.SharedPtr) type: Operator source: remote: path: src/Misaki.HighPerformance.LowLevel/Ptr.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: op_Implicit path: src/Misaki.HighPerformance.LowLevel/Ptr.cs startLine: 47 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel syntax: content: public static implicit operator T*(SharedPtr ptr) parameters: - id: ptr type: Misaki.HighPerformance.LowLevel.SharedPtr`1 return: type: '{T}*' content.vb: Public Shared Widening Operator CType(ptr As SharedPtr(Of T)) As T* overload: Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Implicit* nameWithType.vb: SharedPtr(Of T).CType(SharedPtr(Of T)) fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).CType(Misaki.HighPerformance.LowLevel.SharedPtr(Of T)) name.vb: CType(SharedPtr(Of T)) - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Implicit(`0*)~Misaki.HighPerformance.LowLevel.SharedPtr{`0} commentId: M:Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Implicit(`0*)~Misaki.HighPerformance.LowLevel.SharedPtr{`0} id: op_Implicit(`0*)~Misaki.HighPerformance.LowLevel.SharedPtr{`0} parent: Misaki.HighPerformance.LowLevel.SharedPtr`1 langs: - csharp - vb name: implicit operator SharedPtr(T*) nameWithType: SharedPtr.implicit operator SharedPtr(T*) fullName: Misaki.HighPerformance.LowLevel.SharedPtr.implicit operator Misaki.HighPerformance.LowLevel.SharedPtr(T*) type: Operator source: remote: path: src/Misaki.HighPerformance.LowLevel/Ptr.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: op_Implicit path: src/Misaki.HighPerformance.LowLevel/Ptr.cs startLine: 53 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel syntax: content: public static implicit operator SharedPtr(T* value) parameters: - id: value type: '{T}*' return: type: Misaki.HighPerformance.LowLevel.SharedPtr`1 content.vb: Public Shared Widening Operator CType(value As T*) As SharedPtr(Of T) overload: Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Implicit* nameWithType.vb: SharedPtr(Of T).CType(T*) fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).CType(T*) name.vb: CType(T*) - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Equality(Misaki.HighPerformance.LowLevel.SharedPtr{`0},Misaki.HighPerformance.LowLevel.SharedPtr{`0}) commentId: M:Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Equality(Misaki.HighPerformance.LowLevel.SharedPtr{`0},Misaki.HighPerformance.LowLevel.SharedPtr{`0}) id: op_Equality(Misaki.HighPerformance.LowLevel.SharedPtr{`0},Misaki.HighPerformance.LowLevel.SharedPtr{`0}) parent: Misaki.HighPerformance.LowLevel.SharedPtr`1 langs: - csharp - vb name: operator ==(SharedPtr, SharedPtr) nameWithType: SharedPtr.operator ==(SharedPtr, SharedPtr) fullName: Misaki.HighPerformance.LowLevel.SharedPtr.operator ==(Misaki.HighPerformance.LowLevel.SharedPtr, Misaki.HighPerformance.LowLevel.SharedPtr) type: Operator source: remote: path: src/Misaki.HighPerformance.LowLevel/Ptr.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: op_Equality path: src/Misaki.HighPerformance.LowLevel/Ptr.cs startLine: 59 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel syntax: content: public static bool operator ==(SharedPtr left, SharedPtr right) parameters: - id: left type: Misaki.HighPerformance.LowLevel.SharedPtr`1 - id: right type: Misaki.HighPerformance.LowLevel.SharedPtr`1 return: type: System.Boolean content.vb: Public Shared Operator =(left As SharedPtr(Of T), right As SharedPtr(Of T)) As Boolean overload: Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Equality* nameWithType.vb: SharedPtr(Of T).=(SharedPtr(Of T), SharedPtr(Of T)) fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).=(Misaki.HighPerformance.LowLevel.SharedPtr(Of T), Misaki.HighPerformance.LowLevel.SharedPtr(Of T)) name.vb: =(SharedPtr(Of T), SharedPtr(Of T)) - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Inequality(Misaki.HighPerformance.LowLevel.SharedPtr{`0},Misaki.HighPerformance.LowLevel.SharedPtr{`0}) commentId: M:Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Inequality(Misaki.HighPerformance.LowLevel.SharedPtr{`0},Misaki.HighPerformance.LowLevel.SharedPtr{`0}) id: op_Inequality(Misaki.HighPerformance.LowLevel.SharedPtr{`0},Misaki.HighPerformance.LowLevel.SharedPtr{`0}) parent: Misaki.HighPerformance.LowLevel.SharedPtr`1 langs: - csharp - vb name: operator !=(SharedPtr, SharedPtr) nameWithType: SharedPtr.operator !=(SharedPtr, SharedPtr) fullName: Misaki.HighPerformance.LowLevel.SharedPtr.operator !=(Misaki.HighPerformance.LowLevel.SharedPtr, Misaki.HighPerformance.LowLevel.SharedPtr) type: Operator source: remote: path: src/Misaki.HighPerformance.LowLevel/Ptr.cs branch: main repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git id: op_Inequality path: src/Misaki.HighPerformance.LowLevel/Ptr.cs startLine: 64 assemblies: - Misaki.HighPerformance.LowLevel namespace: Misaki.HighPerformance.LowLevel syntax: content: public static bool operator !=(SharedPtr left, SharedPtr right) parameters: - id: left type: Misaki.HighPerformance.LowLevel.SharedPtr`1 - id: right type: Misaki.HighPerformance.LowLevel.SharedPtr`1 return: type: System.Boolean content.vb: Public Shared Operator <>(left As SharedPtr(Of T), right As SharedPtr(Of T)) As Boolean overload: Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Inequality* nameWithType.vb: SharedPtr(Of T).<>(SharedPtr(Of T), SharedPtr(Of T)) fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).<>(Misaki.HighPerformance.LowLevel.SharedPtr(Of T), Misaki.HighPerformance.LowLevel.SharedPtr(Of T)) name.vb: <>(SharedPtr(Of T), SharedPtr(Of T)) references: - uid: Misaki.HighPerformance.LowLevel commentId: N:Misaki.HighPerformance.LowLevel href: Misaki.html name: Misaki.HighPerformance.LowLevel nameWithType: Misaki.HighPerformance.LowLevel fullName: Misaki.HighPerformance.LowLevel 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 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 - uid: System.IEquatable{Misaki.HighPerformance.LowLevel.SharedPtr`1} commentId: T:System.IEquatable{Misaki.HighPerformance.LowLevel.SharedPtr`1} parent: System definition: System.IEquatable`1 href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 name: IEquatable> nameWithType: IEquatable> fullName: System.IEquatable> nameWithType.vb: IEquatable(Of SharedPtr(Of T)) fullName.vb: System.IEquatable(Of Misaki.HighPerformance.LowLevel.SharedPtr(Of T)) name.vb: IEquatable(Of SharedPtr(Of T)) spec.csharp: - uid: System.IEquatable`1 name: IEquatable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: < - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1 name: SharedPtr href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html - name: < - name: T - name: '>' - name: '>' spec.vb: - uid: System.IEquatable`1 name: IEquatable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: ( - name: Of - name: " " - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1 name: SharedPtr href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html - name: ( - name: Of - name: " " - name: T - name: ) - name: ) - uid: System.ValueType.ToString commentId: M:System.ValueType.ToString parent: System.ValueType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring name: ToString() nameWithType: ValueType.ToString() fullName: System.ValueType.ToString() spec.csharp: - uid: System.ValueType.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ( - name: ) spec.vb: - uid: System.ValueType.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ( - 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.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype name: GetType() nameWithType: object.GetType() fullName: object.GetType() nameWithType.vb: Object.GetType() fullName.vb: Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) spec.vb: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals name: ReferenceEquals(object, object) nameWithType: object.ReferenceEquals(object, object) fullName: object.ReferenceEquals(object, object) nameWithType.vb: Object.ReferenceEquals(Object, Object) fullName.vb: Object.ReferenceEquals(Object, Object) name.vb: ReferenceEquals(Object, Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.IEquatable`1 commentId: T:System.IEquatable`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 name: IEquatable nameWithType: IEquatable fullName: System.IEquatable nameWithType.vb: IEquatable(Of T) fullName.vb: System.IEquatable(Of T) name.vb: IEquatable(Of T) spec.csharp: - uid: System.IEquatable`1 name: IEquatable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: < - name: T - name: '>' spec.vb: - uid: System.IEquatable`1 name: IEquatable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: ( - name: Of - name: " " - name: T - name: ) - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: System.ValueType commentId: T:System.ValueType parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.valuetype name: ValueType nameWithType: ValueType fullName: System.ValueType - 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: Misaki.HighPerformance.LowLevel.SharedPtr`1.#ctor* commentId: Overload:Misaki.HighPerformance.LowLevel.SharedPtr`1.#ctor href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html#Misaki_HighPerformance_LowLevel_SharedPtr_1__ctor__0__ name: SharedPtr nameWithType: SharedPtr.SharedPtr fullName: Misaki.HighPerformance.LowLevel.SharedPtr.SharedPtr nameWithType.vb: SharedPtr(Of T).New fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).New name.vb: New - uid: '{T}*' isExternal: true name: T* nameWithType: T* fullName: T* spec.csharp: - name: T - name: '*' spec.vb: - name: T - name: '*' - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.Get* commentId: Overload:Misaki.HighPerformance.LowLevel.SharedPtr`1.Get href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html#Misaki_HighPerformance_LowLevel_SharedPtr_1_Get name: Get nameWithType: SharedPtr.Get fullName: Misaki.HighPerformance.LowLevel.SharedPtr.Get nameWithType.vb: SharedPtr(Of T).Get fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).Get - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.GetRef* commentId: Overload:Misaki.HighPerformance.LowLevel.SharedPtr`1.GetRef href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html#Misaki_HighPerformance_LowLevel_SharedPtr_1_GetRef name: GetRef nameWithType: SharedPtr.GetRef fullName: Misaki.HighPerformance.LowLevel.SharedPtr.GetRef nameWithType.vb: SharedPtr(Of T).GetRef fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).GetRef - uid: '{T}' commentId: '!:T' definition: T name: T nameWithType: T fullName: T - uid: T name: T nameWithType: T fullName: T - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.Equals* commentId: Overload:Misaki.HighPerformance.LowLevel.SharedPtr`1.Equals href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html#Misaki_HighPerformance_LowLevel_SharedPtr_1_Equals_Misaki_HighPerformance_LowLevel_SharedPtr__0__ name: Equals nameWithType: SharedPtr.Equals fullName: Misaki.HighPerformance.LowLevel.SharedPtr.Equals nameWithType.vb: SharedPtr(Of T).Equals fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).Equals - uid: System.IEquatable{Misaki.HighPerformance.LowLevel.SharedPtr`1}.Equals(Misaki.HighPerformance.LowLevel.SharedPtr{{T}}) commentId: M:System.IEquatable{Misaki.HighPerformance.LowLevel.SharedPtr`1}.Equals(Misaki.HighPerformance.LowLevel.SharedPtr{`0}) parent: System.IEquatable{Misaki.HighPerformance.LowLevel.SharedPtr`1} definition: System.IEquatable`1.Equals(`0) href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals name: Equals(SharedPtr) nameWithType: IEquatable>.Equals(SharedPtr) fullName: System.IEquatable>.Equals(Misaki.HighPerformance.LowLevel.SharedPtr) nameWithType.vb: IEquatable(Of SharedPtr(Of T)).Equals(SharedPtr(Of T)) fullName.vb: System.IEquatable(Of Misaki.HighPerformance.LowLevel.SharedPtr(Of T)).Equals(Misaki.HighPerformance.LowLevel.SharedPtr(Of T)) name.vb: Equals(SharedPtr(Of T)) spec.csharp: - uid: System.IEquatable{Misaki.HighPerformance.LowLevel.SharedPtr`1}.Equals(Misaki.HighPerformance.LowLevel.SharedPtr{`0}) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: ( - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1 name: SharedPtr href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html - name: < - name: T - name: '>' - name: ) spec.vb: - uid: System.IEquatable{Misaki.HighPerformance.LowLevel.SharedPtr`1}.Equals(Misaki.HighPerformance.LowLevel.SharedPtr{`0}) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: ( - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1 name: SharedPtr href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html - name: ( - name: Of - name: " " - name: T - name: ) - name: ) - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1 commentId: T:Misaki.HighPerformance.LowLevel.SharedPtr`1 parent: Misaki.HighPerformance.LowLevel href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html name: SharedPtr nameWithType: SharedPtr fullName: Misaki.HighPerformance.LowLevel.SharedPtr nameWithType.vb: SharedPtr(Of T) fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T) name.vb: SharedPtr(Of T) spec.csharp: - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1 name: SharedPtr href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html - name: < - name: T - name: '>' spec.vb: - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1 name: SharedPtr href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html - 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.IEquatable`1.Equals(`0) commentId: M:System.IEquatable`1.Equals(`0) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals name: Equals(T) nameWithType: IEquatable.Equals(T) fullName: System.IEquatable.Equals(T) nameWithType.vb: IEquatable(Of T).Equals(T) fullName.vb: System.IEquatable(Of T).Equals(T) spec.csharp: - uid: System.IEquatable`1.Equals(`0) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: ( - name: T - name: ) spec.vb: - uid: System.IEquatable`1.Equals(`0) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: ( - name: T - name: ) - uid: System.ValueType.Equals(System.Object) commentId: M:System.ValueType.Equals(System.Object) parent: System.ValueType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals name: Equals(object) nameWithType: ValueType.Equals(object) fullName: System.ValueType.Equals(object) nameWithType.vb: ValueType.Equals(Object) fullName.vb: System.ValueType.Equals(Object) name.vb: Equals(Object) spec.csharp: - uid: System.ValueType.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.ValueType.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.ValueType.GetHashCode commentId: M:System.ValueType.GetHashCode parent: System.ValueType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode name: GetHashCode() nameWithType: ValueType.GetHashCode() fullName: System.ValueType.GetHashCode() spec.csharp: - uid: System.ValueType.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: ( - name: ) spec.vb: - uid: System.ValueType.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: ( - name: ) - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.GetHashCode* commentId: Overload:Misaki.HighPerformance.LowLevel.SharedPtr`1.GetHashCode href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html#Misaki_HighPerformance_LowLevel_SharedPtr_1_GetHashCode name: GetHashCode nameWithType: SharedPtr.GetHashCode fullName: Misaki.HighPerformance.LowLevel.SharedPtr.GetHashCode nameWithType.vb: SharedPtr(Of T).GetHashCode fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).GetHashCode - uid: System.Int32 commentId: T:System.Int32 parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 name: int nameWithType: int fullName: int nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Implicit* commentId: Overload:Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Implicit name: implicit operator nameWithType: SharedPtr.implicit operator fullName: Misaki.HighPerformance.LowLevel.SharedPtr.implicit operator nameWithType.vb: SharedPtr(Of T).CType fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).CType name.vb: CType spec.csharp: - name: implicit - name: " " - name: operator - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Equality* commentId: Overload:Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Equality href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html#Misaki_HighPerformance_LowLevel_SharedPtr_1_op_Equality_Misaki_HighPerformance_LowLevel_SharedPtr__0__Misaki_HighPerformance_LowLevel_SharedPtr__0__ name: operator == nameWithType: SharedPtr.operator == fullName: Misaki.HighPerformance.LowLevel.SharedPtr.operator == nameWithType.vb: SharedPtr(Of T).= fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).= name.vb: = spec.csharp: - name: operator - name: " " - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Equality* name: == href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html#Misaki_HighPerformance_LowLevel_SharedPtr_1_op_Equality_Misaki_HighPerformance_LowLevel_SharedPtr__0__Misaki_HighPerformance_LowLevel_SharedPtr__0__ - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Inequality* commentId: Overload:Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Inequality href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html#Misaki_HighPerformance_LowLevel_SharedPtr_1_op_Inequality_Misaki_HighPerformance_LowLevel_SharedPtr__0__Misaki_HighPerformance_LowLevel_SharedPtr__0__ name: operator != nameWithType: SharedPtr.operator != fullName: Misaki.HighPerformance.LowLevel.SharedPtr.operator != nameWithType.vb: SharedPtr(Of T).<> fullName.vb: Misaki.HighPerformance.LowLevel.SharedPtr(Of T).<> name.vb: <> spec.csharp: - name: operator - name: " " - uid: Misaki.HighPerformance.LowLevel.SharedPtr`1.op_Inequality* name: '!=' href: Misaki.HighPerformance.LowLevel.SharedPtr-1.html#Misaki_HighPerformance_LowLevel_SharedPtr_1_op_Inequality_Misaki_HighPerformance_LowLevel_SharedPtr__0__Misaki_HighPerformance_LowLevel_SharedPtr__0__