Skip to content

Commit

Permalink
Missing method on NETFX
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Jan 9, 2024
1 parent a3a1c52 commit 64e43c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IKVM.Reflection/WindowsRuntimeProjection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ internal static void Patch(ModuleReader module, Dictionary<int, string> strings,
throw new NotImplementedException("CustomAttribute table must be sorted");
}

bool clr = imageRuntimeVersion.Contains(';');
var clr = imageRuntimeVersion.Contains(";");
if (clr)
{
imageRuntimeVersion = imageRuntimeVersion.Substring(imageRuntimeVersion.IndexOf(';') + 1);
Expand Down

0 comments on commit 64e43c2

Please sign in to comment.