Tags
- Android
- emplace_back
- postman collection variables
- postman pre-request
- postman collection
- Interaction developer
- Intellij
- 우수한 프런트 개발자
- 좋은 개발자
- postman tests
- postman session
- 프런트엔드
- LSL_Script
- MFC
- postman excel
- Front-end developer
- c#
- solidity
- Java
- web developer
- C++
- postman html parse
- oracle
- Android/iOS Developer
- postman
- UI/UX Engineer
- postman automations
- Unity
- postman csv
- 다빈치 리졸브
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Archives
- Today
- Total
david's daily developer note
C#, Command창 명령어 실행하기. 본문
728x90
command창 명령어를 C#응용프로그램에서 바로 수행하자. ㅎㅎ
System.Diagnostics.ProcessStartInfo procStartInfo =
new System.Diagnostics.ProcessStartInfo("cmd", "/c " + "mstsc.exe");
procStartInfo.RedirectStandardOutput = true;
procStartInfo.UseShellExecute = false;
procStartInfo.CreateNoWindow = true; // Do not create the black window.
// Now we create a process, assign its ProcessStartInfo and start it
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo = procStartInfo;
proc.Start();
728x90
'[Develop] Language > C#' 카테고리의 다른 글
C#, 상속 관계가 존재하는 Class들에 대한 is연산중 범할 수 있는 논리 오류.. (0) | 2010.10.27 |
---|---|
.NET 텍스트 파일 한글 읽어오기. (0) | 2010.10.27 |
C#, Collection Type Sorting [ Query Keyword , "orderby" , Sorting] (0) | 2010.10.01 |
.NET 설치 및 배포파일 만들기. (0) | 2010.09.29 |
C#, 코드 수행 시간 측정. (0) | 2010.06.29 |