- postman html parse
- Android
- postman session
- emplace_back
- postman
- postman csv
- C++
- 프런트엔드
- Android/iOS Developer
- solidity
- 다빈치 리졸브
- postman tests
- web developer
- postman excel
- LSL_Script
- postman collection variables
- Unity
- postman pre-request
- oracle
- c#
- postman collection
- Intellij
- 좋은 개발자
- Java
- MFC
- postman automations
- Front-end developer
- UI/UX Engineer
- 우수한 프런트 개발자
- Interaction developer
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- Today
- Total
목록[Develop] Language/C# (18)
david's daily developer note
Dictionary foreach 루프 정리 Dictionary bots = new Dictionary(); foreach (KeyValuePair pair in bots) { string key = pair.Key; int value = pair.Value; }
ref 키워드는 인수를 참조로 전달하는 데 사용됩니다. 메서드의 모든 매개 변수 변경 사항은 호출하는 메서드로 제어가 다시 전달될 때 해당 변수에 반영됩니다. ref 매개 변수를 사용하려면 메서드 정의와 호출하는 메서드에서 모두 ref 키워드를 명시적으로 사용해야 합니다. 예를 들면 다음과 같습니다. class RefExample { static void Method(ref int i) { i = 44; } static void Main() { int val = 0; Method(ref val); // val is now 44 } } ref 매개 변수에 전달되는 인수는 먼저 초기화되어야 합니다. 이는 해당 인수를 전달하기 전에 명시적으로 초기화할 필요가 없는 out과 다른 점입니다. out을 참조하십시오..
1. C# 에서 (.NET Framework) 2. UI를 갖는 어플리케이션을 작성할 때 3. 스레드를 생성해서 4. form 의 control 객체를 접근할 때 만나게되는 에러.! $exception {"Control.Invoke는 별도 스레드에 만들어진 컨트롤과 상호 작용하는 데 사용해야 합니다."} System.Exception {System.NotSupportedException} 폼에 있는 컨트롤 박스를 별도의 스레드 (폼 도 하나의 스레드) 에서 접근하려고 하면 서로 다른 스레드가 하나의 컨트롤 객체에 접근하는 것을 방지하기 위해서 고안된 방법이라고 이해된다. 어디에서나 있는 멀티 스레드 환경에서 자원보호를 위한것이다. 아래 코드는 myDelegate라고 하는 delegate를 선언하고, pr..
class FileSysInfo { static void Main() { // You can also use System.Environment.GetLogicalDrives to // obtain names of all logical drives on the computer. System.IO.DriveInfo di = new System.IO.DriveInfo(@"C:\"); Console.WriteLine(di.TotalFreeSpace); Console.WriteLine(di.VolumeLabel); // Get the root directory and print out some information about it. System.IO.DirectoryInfo dirInfo = di.RootDire..