Files
PURErat-crack-scode/decompiled/PanelPlugins/PureHelper.Client/ProtoBuf.Meta/MutableList.cs
T
2026-08-27 10:56:38 -06:00

27 lines
300 B
C#

namespace ProtoBuf.Meta;
internal sealed class MutableList : BasicList
{
public new object this[int index]
{
get
{
return head[index];
}
set
{
head[index] = value;
}
}
public void RemoveLast()
{
head.RemoveLastWithMutate();
}
public void Clear()
{
head.Clear();
}
}