본문 바로가기
tips/자주쓰는 C# 스크립트

유니티 C# Dictionary에서 Value로 Key 값 알아내기

by 디지털 수공업자 2020. 12. 24.
반응형

 

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 네임스페이스 사용할 것.

반응형

댓글