This commit is contained in:
Westin Miller
2017-09-12 01:44:13 -07:00
parent a61b646295
commit 5eceb21ec7
2 changed files with 12 additions and 0 deletions

View File

@@ -45,5 +45,11 @@ namespace Torch.Managers.PatchManager.MSIL
Type = null;
Name = null;
}
/// <inheritdoc/>
public override string ToString()
{
return $"arg{Position:X4}({Type?.Name ?? "unknown"})";
}
}
}

View File

@@ -52,5 +52,11 @@ namespace Torch.Managers.PatchManager.MSIL
Type = null;
Name = null;
}
/// <inheritdoc/>
public override string ToString()
{
return $"lcl{Index:X4}({Type?.Name ?? "unknown"})";
}
}
}