so i want to start cmd but this one error keeps popping up
Error > error CS0103: The name `Process’ does not exist in the current context
using System.Diagnostics;
using UnityEngine;
public class CMDManager : MonoBehaviour
{
private void Start()
{
Process.Start("cmd.exe");
}
}