boot commands don't work?
description
Hi, I was working on my OS and decided to make a shutdown command.
So, I used this code I wrote:
if (input == "shutdown" | input == "SHUTDOWN")
{
Cosmos.Sys.Deboot.ShutDown();
}
But the error message read as follows:
Error 2 The type or namespace name 'Sys' does not exist in the namespace 'Cosmos' (are you missing an assembly reference?)
Thus seeing this I tried to add the ref but it is no where to be found.
Any help is appreciated!
Thanks,
CProgrammer3088