728x90
728x170
Dictionary<string, string> myDictionary = new Dictionary<string, string>();
myDictionary.Add("a", "x");
myDictionary.Add("b", "y");
int i = Array.IndexOf(myDictionary.Keys.ToArray(), "a");
int j = Array.IndexOf(myDictionary.Values.ToArray(), "y");
728x90
그리드형
'C# > Winform' 카테고리의 다른 글
[C#] HttpUtility UrlEncode/UrlDecode 처리하기 (%문자열) (0) | 2020.09.08 |
---|---|
[C#] RGB to HSV, HSV to RGB (0) | 2020.08.27 |
(링크)SVG 파일을 Xaml 로 변경하기 (2) | 2020.07.13 |
[C#] 특정 년,월 의 일수 가져오기 (0) | 2020.07.12 |
[C#] 배경에 따른 글자색(흰색,검은색) 변경하기 (0) | 2020.07.06 |