PCSDK 2026 register with rw8

In PCSDK 2026 guidance: Create a simple PC SDK application

for rw8, user need to Register like below, what is the id and pinCode should be input in the Register code??
if (this.controller.RobotWareVersion >= new Version(8, 0))
{
this.controller.ControlStation.Register(“Example ControlStation”, $“{Guid.NewGuid().ToString()}”, 1234, true);

//public void Register(string displayName, string id, uint pinCode, bool releaseWriteAccessWhenLost)
}

the example has litttle bugs( missed “{” and “}”), register should like below:
this.controller.ControlStation.Register(“Example ControlStation”, “{”+$“{Guid.NewGuid().ToString()}”+“}”, 1234, true);