Skip to content

Instantly share code, notes, and snippets.

@sampetrosov
Created January 20, 2021 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sampetrosov/ac6ee744bfc330dbbf90b3303fe49fa1 to your computer and use it in GitHub Desktop.
Save sampetrosov/ac6ee744bfc330dbbf90b3303fe49fa1 to your computer and use it in GitHub Desktop.
// Token: 0x06008BBA RID: 35770 RVA: 0x00248E48 File Offset: 0x00247048
internal static string GetExtFieldId(GIResult field)
{
if (field == null)
{
throw new ArgumentNullException("field");
}
if (field.RowID == null)
{
throw new ArgumentException("RowID cannot be null.", "field");
}
return field.RowID.Value.ToString("N", CultureInfo.InvariantCulture);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment