반응형 분류 전체보기505 백준 C# 10998 using System; namespace baek2 { class Program { static void Main(string[] args) { string input; string[] token; input = Console.ReadLine(); token = input.Split(' '); int A = int.Parse(token[0]); int B = int.Parse(token[1]); Console.WriteLine("{0}", A*B); } } } 2023. 4. 6. 백준 C# 1001 using System; namespace baek2 { class Program { static void Main(string[] args) { string input; string[] token; input = Console.ReadLine(); token = input.Split(' '); int A = int.Parse(token[0]); int B = int.Parse(token[1]); Console.WriteLine("{0}", A-B); } } } 2023. 4. 6. 백준 C# 1000 using System; namespace baek2 { class Program { static void Main(string[] args) { string input; string[] token; input = Console.ReadLine(); token = input.Split(' '); int A = int.Parse(token[0]); int B = int.Parse(token[1]); Console.WriteLine("{0}", A+B); } } } 다른 방법 string input = Console.ReadLine(); string[] arr = input.Split(): Console.WriteLine(int.Parse(arr[0])-int.Parse(arr[1])); 2023. 4. 6. Unity - 게임 에셋 사이트들 추천! https://itch.io/game-assets/tag-2d Top game assets tagged 2D Find game assets tagged 2D like Sprout Lands - Asset Pack, Modern exteriors - RPG Tileset [16X16], Modern interiors - RPG Tileset [16X16], Mystic Woods - 16x16 Pixel Art Asset Pack, Free Pixel Art Character Base - A "Mana Seed" Sprite Sheet on itch.io, the itch.io https://craftpix.net/freebies/ https://www.gamedevmarket.net/category/2d.. 2023. 3. 8. Unity - Bind event, Extension Method 1. Bind에 Gameobject도 추가하기 01 enum 추가 enum GameObjects { TestObject, } GameObject type의 Bind도 받고 싶다고 추가 Bind(typeof(GameObjects)); 02 T의 타입이 GameObject인지 확인 if(typeof(T) == typeof(GameObject)) objects[i] = Util.FindChild(gameObject, names[i], true); else objects[i] = Util.FindChild(gameObject, names[i], true); if (objects[i] == null) Debug.Log($"Faild to bind!{names[i]}"); 03 GameObject반환 우리가 이전에.. 2023. 2. 22. Unity - UI 자동화(Bind, Get) Bind 1. enum 이름들을 enum값으로 설정 enum Buttons { PointButton, } enum Texts { PoinText, scoreText, } enum값 넘겨주는 방법은 Reflection을 이용하면 된다. 2. Reflection 이용해서 enum 넘기기 Reflection은 객체를 X-Ray 기능을 가지고 있다. 이를 통해 형식, 메소드 프로퍼티, 필드, 이벤트등의 정보를 확인할 수 있다. Relfection 더 자세히 알아보러 가기 C# 문법 - Reflection, Attribute 1. Reflection class의 모든 필드의 정보를 가져오는 X-ray와 같은 기능을 가지고 있다. C#에서 모든 객체들은 오브젝트 객체에서 파생되어 나온 것이다. Pig클래스에서 없는.. 2023. 2. 21. 이전 1 ··· 80 81 82 83 84 85 다음 반응형