File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments