Hide Call Protection

Another thing that might reveal your sensitive code and how your program works is the Call Flow Graph of your application.

The Call Flow of your program allow the hacker to trace the program flow trough all the methods in the classes.

Match match = (Match)obj;
ListViewItem listViewItem = this.resultListView.Items.Add(match.ToString());
listViewItem.SubItems.Add(match.Index.ToString());
listViewItem.SubItems.Add(match.Length.ToString());

Last updated