Files
Aug2021-Cpp2IL-Dump/System/Collections/Generic/LinkedListNode.cs
T
2026-04-10 22:50:51 +02:00

122 lines
4.7 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// <summary>Represents a node in a <see cref="T:System.Collections.Generic.LinkedList`1" />. This class cannot be inherited.</summary>
/// <typeparam name="T">Specifies the element type of the linked list.</typeparam>
// Token: 0x0200034A RID: 842
[Token(Token = "0x200034A")]
public sealed class LinkedListNode<T>
{
/// <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> class, containing the specified value.</summary>
/// <param name="value">The value to contain in the <see cref="T:System.Collections.Generic.LinkedListNode`1" />.</param>
// Token: 0x06001617 RID: 5655 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001617")]
[Address(RVA = "0x1D64D30", Offset = "0x1D63B30", VA = "0x181D64D30")]
public LinkedListNode(T value)
{
}
// Token: 0x06001618 RID: 5656 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001618")]
[Address(RVA = "0x1D64CA0", Offset = "0x1D63AA0", VA = "0x181D64CA0")]
internal LinkedListNode(LinkedList<T> list, T value)
{
}
/// <summary>Gets the <see cref="T:System.Collections.Generic.LinkedList`1" /> that the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> belongs to.</summary>
/// <returns>A reference to the <see cref="T:System.Collections.Generic.LinkedList`1" /> that the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> belongs to, or <see langword="null" /> if the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> is not linked.</returns>
// Token: 0x17000494 RID: 1172
// (get) Token: 0x06001619 RID: 5657 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000494")]
public LinkedList<T> List
{
[Token(Token = "0x6001619")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// <summary>Gets the next node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <returns>A reference to the next node in the <see cref="T:System.Collections.Generic.LinkedList`1" />, or <see langword="null" /> if the current node is the last element (<see cref="P:System.Collections.Generic.LinkedList`1.Last" />) of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
// Token: 0x17000495 RID: 1173
// (get) Token: 0x0600161A RID: 5658 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000495")]
public LinkedListNode<T> Next
{
[Token(Token = "0x600161A")]
[Address(RVA = "0x1D64D70", Offset = "0x1D63B70", VA = "0x181D64D70")]
get
{
return null;
}
}
/// <summary>Gets the previous node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
/// <returns>A reference to the previous node in the <see cref="T:System.Collections.Generic.LinkedList`1" />, or <see langword="null" /> if the current node is the first element (<see cref="P:System.Collections.Generic.LinkedList`1.First" />) of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
// Token: 0x17000496 RID: 1174
// (get) Token: 0x0600161B RID: 5659 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000496")]
public LinkedListNode<T> Previous
{
[Token(Token = "0x600161B")]
[Address(RVA = "0x1D64DA0", Offset = "0x1D63BA0", VA = "0x181D64DA0")]
get
{
return null;
}
}
/// <summary>Gets the value contained in the node.</summary>
/// <returns>The value contained in the node.</returns>
// Token: 0x17000497 RID: 1175
// (get) Token: 0x0600161C RID: 5660 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x0600161D RID: 5661 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000497")]
public T Value
{
[Token(Token = "0x600161C")]
[Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0")]
get
{
return null;
}
[Token(Token = "0x600161D")]
[Address(RVA = "0x1D64E10", Offset = "0x1D63C10", VA = "0x181D64E10")]
set
{
}
}
// Token: 0x0600161E RID: 5662 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600161E")]
[Address(RVA = "0xBEB1C0", Offset = "0xBE9FC0", VA = "0x180BEB1C0")]
internal void Invalidate()
{
}
// Token: 0x04000E53 RID: 3667
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E53")]
internal LinkedList<T> list;
// Token: 0x04000E54 RID: 3668
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E54")]
internal LinkedListNode<T> next;
// Token: 0x04000E55 RID: 3669
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E55")]
internal LinkedListNode<T> prev;
// Token: 0x04000E56 RID: 3670
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000E56")]
internal T item;
}
}