UserName of a process



In asp.net(C#) we can get the Process Name of a process using the following
code:

System.Diagnostics.Process item;
item.ProcessName.ToString();

Is there a way to get the User Name of a process?
--
Thanks
Prisy
.