검색1 프로세스 찾기 using System; using System.Diagnostics; using System.IO; namespace ProcessFinder { class Program { static void Main(string[] args) { string processName = Path.GetFileNameWithoutExtension(System.AppDomain.CurrentDomain.FriendlyName); IntPtr handle = SearchHandle(processName); Console.WriteLine($"{processName} handle is {handle}"); Console.ReadKey(); } static IntPtr SearchHandle(string targetName).. 2022. 9. 9. 이전 1 다음