C# farklı bir exe dosyasını yönetici olarak nasıl çalıştırabiliriz ?
Buyrun kod;
ProcessStartInfo info = new ProcessStartInfo("C:\\Windows\\notepad.exe");
info.UseShellExecute = true;
info.Verb = "runas";
Process.Start(info);
Herkese merhaba
Bu dersimizde operatörlerin kullanımını göstereceğim.
Not: +(artı), -(eksi), *(çarpma), /(bölme) bu operatörleri anlatmaya gerek duymuyorum matematikte kullandığımız işlemleri yapar.
int sayi1 = 5;
int sayi2 = 18;
int sayi3 = 9...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.