即 static void Main(string[] args){ var thread = new Thread(WhoAmI); thread.Start();}static void WhoAmI(){ //can i access network resources as the user who ran Main?} 是的,他们这样做. // So yes, you can.
static void Main(string[] args)
{
var thread = new Thread(WhoAmI);
thread.Start();
}
static void WhoAmI()
{
//can i access network resources as the user who ran Main?
}
是的,他们这样做.
// So yes, you can.
