V
Size: a a a
V
NZ
V
PF
IA
OT
GB
MJ
DB
List<Event> Set { get; } = new List<Event>();
var Set { get; } = new List<Event>(capacity: 30);
List<Event> Set { get; } = new(capacity: 30);
DB
public unsafe CancellationToken(bool canceled)
{
*(CancellationToken*) ref this = new CancellationToken();
if (!canceled)
return;
this.m_source = CancellationTokenSource.InternalGetStaticSource(canceled);
}
S
public unsafe CancellationToken(bool canceled)
{
*(CancellationToken*) ref this = new CancellationToken();
if (!canceled)
return;
this.m_source = CancellationTokenSource.InternalGetStaticSource(canceled);
}
AK
DB
AK
public CancellationToken(bool canceled) : this()
.DB
AK
KR
IL
KR
MA