0

My colleague got the assignment to find a way to change the name of a compiled application where the main form title has a missing character. We figured this might be possible through changing the string somewhere in the binary, but we couldn't even find the exact title string in the file using a hex editor. We don't have source code available, but the application was supposedly written in C#.

Is there a way to edit a form title and keep the rest of the application working?

user1306322
  • 8,561
  • 18
  • 61
  • 122

1 Answers1

1

Could you de-compile your binary, make the change to the source and recompile? http://www.jetbrains.com/decompiler/

Also see C# Decompilers?

Community
  • 1
  • 1
Ryan
  • 3,924
  • 6
  • 46
  • 69