본문 바로가기
C#

Dictionary 관련 유용코드

by 캡틴노랑이 2015. 8. 21.
반응형

Dictionary foreach KeyValuePair

foreach (KeyValuePair<string, string> f in param)
{
    parameters.AddWithValue("@" + f.Key, f.Value);
}  

 

 

Dictionary 위치변경 list로 벼경후 현재 인댁스를 찾아서 가져다 붙이기
var codeIndex = map.Values.ToList().IndexOf(statusCode);
var codeItem = map.Skip(codeIndex+1).Concat(map.Take(codeIndex)).First();    

반응형

'C#' 카테고리의 다른 글

Action 메서드  (0) 2015.08.21
CSV 파일 읽어오기  (0) 2015.08.21
c# Extention Code 확장 메서드 모음.  (0) 2015.08.21
Dataset Extension 데이터 존재 유무 체크, 값 등등  (0) 2015.08.21
JSON array(or list) in C#  (0) 2015.08.21

댓글