I would like to know if I can change the name of the process I am running at run time. Namely:
public static void Main()
{
Process.GetCurrentProcess().ProcessName; // Aquí tendríamos el nombre original que aparece en el ensamblado
//Asignar un nombre nuevo
Process.GetCurrentProcess().ProcessName; // Aquí tener el nombre modificado
}
I would like to know if this is possible and if so, how to do it.
Thank you and regards