반응형
using System.Linq ;
using System.Collections;
using UnityEngine;
public class testDic : MonoBehaviour {
Dictionary<string, int> dic = new Dictionary<string, int>(){
{"item0", 1},
{"item1", 39},
{"item2", 384}
} ;
// Value값 384로 Key값 알아내기
string key = dic.FirstOrDefault(x => x.Value == 384).Key ;
}
System.Linq 네임스페이스 사용할 것.
반응형
'tips > 자주쓰는 C# 스크립트' 카테고리의 다른 글
애드몹 적응형 배너 adaptive banner 적용하는 방법. (0) | 2021.01.23 |
---|---|
유니티 RectTransform 좌표 이동 (0) | 2020.12.30 |
유니티, Button 스크립트로 클릭 연결 onClick 이벤트 (2) | 2020.12.18 |
유니티, 일정한 시간 딜레이와 반복 Invoke (0) | 2020.12.18 |
유니티 DateTime을 string으로 (0) | 2020.11.05 |
댓글