c# ile bilgisayar ve kullanıcı adını öğrenmek
public partial class home : Form
{
public home()
{
InitializeComponent();
}
private void home_Load(object sender, EventArgs e)
{
label1.Text = System.Security.Principal.WindowsIdentity.GetCurrent().Name.ToString();
}
}















