본문 바로가기

전체 글16

C# 문자열로 변수이름 가져오기 public class MyClass { public string _datafile; public MyClass() { _datafile = "Hello"; } public void PrintField() { var result = this.GetType().GetField("_datafile").GetValue(this); Console.WriteLine(result); // will print Hello } } 2020. 4. 19.
C# 문자열을 이용해 변수에 접근 public string[] temp1 = new string[3] { "A","B","C" }; public string[] temp2 = new string[3] { "D","E","F" }; public string[] temp3 = new string[3] { "G","H","I" }; void GetValue() { string[] tempArray = (string[])GetType().GetField("temp1").GetValue(this); Debug.Log("A: " + string.Join(",", tempArray)); } https://stackoverflow.com/questions/11122241/accessing-a-variable-using-a-string-containin.. 2020. 3. 30.
C# 문자열을 int 리스트 / int 배열로 변환하기 // 문자열 -> int 리스트 string sNumbers = "1,2,3,4,5"; List numbers = new List(); umbers = sNumbers.Split(',').Select(Int32.Parse).ToList(); // 문자열 -> int 배열 string sNumbers = "1,2,3,4,5"; int[] numbers = sNumbers.Split(',').Select(n => Convert.ToInt32(n)).ToArray(); 출처: https://stackoverflow.com/questions/911717/split-string-convert-tolistint-in-one-line 2020. 2. 28.
유니티 UI 클릭했을 때, 클릭된 위치 값 가져오기 300x300 크기의 이미지에서 정중앙에 클릭하면 150,150의 좌표를 가져옴(피벗이 0,0 기준) 왼쪽 최하단을 클릭하면 0,0의 좌표를 가져옴. public void OnPointerClick(PointerEventData eventData) { if (!RectTransformUtility.ScreenPointToLocalPointInRectangle(GetComponent(), eventData.position, eventData.pressEventCamera, out Vector2 localCursor)) return; Debug.Log("LocalCursor:" + localCursor); } 출처: https://answers.unity.com/questions/892333/find-xy-.. 2019. 11. 7.