This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,23 @@
using System;
namespace System.Reflection.Emit
{
// Token: 0x02000200 RID: 512
internal struct SequencePoint
{
// Token: 0x04000804 RID: 2052
public int Offset;
// Token: 0x04000805 RID: 2053
public int Line;
// Token: 0x04000806 RID: 2054
public int Col;
// Token: 0x04000807 RID: 2055
public int EndLine;
// Token: 0x04000808 RID: 2056
public int EndCol;
}
}