/// <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); } }
public override void SetName(string name) { debugApplication.SetName(name); }