Пример #1
0
 /// <summary>
 /// Sets the name of the application
 /// </summary>
 /// <param name="name">The name of the application</param>
 public void SetName(string name)
 {
     if (_is64Bit)
     {
         _debugApplication64.SetName(name);
     }
     else
     {
         _debugApplication32.SetName(name);
     }
 }
Пример #2
0
 public override void SetName(string name)
 {
     debugApplication.SetName(name);
 }