Skip to content

Commit 411188d

Browse files
committed
Random additional changes to MethodDump.cs
1 parent fad8c5f commit 411188d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

PawMapLoader/Res/Debug/MethodDump.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ public static void Create()
1515
strh_DumpText.AppendLine("=================== GAME DUMP ===================");
1616
foreach (var asm in AppDomain.CurrentDomain.GetAssemblies())
1717
{
18-
strh_DumpText.AppendLine($"[] {asm.GetName().Name} ===================");
18+
strh_DumpText.AppendLine($"\n\n[] {asm.GetName().Name} ===================\n");
1919
Type[] types;
2020
try {types = asm.GetTypes();} catch { continue; }
2121

2222
foreach (var type in types)
2323
{
24-
strh_DumpText.AppendLine($"|| {type.Name}");
24+
strh_DumpText.AppendLine($"|| {type.FullName}");
2525

2626
foreach (var method in type.GetMethods(BindingFlags.Public | BindingFlags.NonPublic |
2727
BindingFlags.Static | BindingFlags.Instance |
@@ -30,7 +30,7 @@ public static void Create()
3030
try
3131
{
3232
var tempstr = string.Join(", ", method.GetParameters().Select(p => $"{p.ParameterType.Name} {p.Name}"));
33-
strh_DumpText.AppendLine($"||==> {method.Name}({tempstr}) ==> ret {method.ReturnType.Name}");
33+
strh_DumpText.AppendLine($"||==> {method.Name}({tempstr}) ==> ret {method.ReturnType.FullName}");
3434
}
3535
catch (Exception e)
3636
{

0 commit comments

Comments
 (0)