일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- guide
- 파이썬
- 문제풀이
- DP
- 프로그래밍
- Basic
- 시작해요 언리얼 2022
- 기초
- Tutorial
- Class
- c++
- 재귀
- w3school
- Programming
- python
- W3Schools
- 백준
- Material
- 오류
- Unreal Engine 5
- C#
- dynamic
- UE5
- dfs
- loop
- github
- parameter
- Unity
- String
- Algorithm
- Today
- Total
목록C# (49)
행복한 개구리

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace Homework1234 { class App { public App() { Console.WriteLine("App"); Thread t; ThreadStart ts = new ThreadStart(() => { for (int i = 0; i < 10; i++) { Console.WriteLine("Hello~"); Thread.Sleep(500); } }); t = new Thread(ts); t.Start(); Thread t2 = n..

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study801 { class DynamicArray { public int capacity; public int count; public int[] arrs; public DynamicArray(int capacity) { this.capacity = capacity; this.arrs = new int[capacity]; //DynamicArray로 만든 인스턴스로 불러올 수 있는 배열 arrs는 DynamicArray에서 직접 받은 capacity값 만큼의 크기를 가진다. } ..
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Threading; using System.Diagnostics; namespace Study801 { class App { public App() { Console.WriteLine("App"); //스레드 변수 선언 Thread t; ThreadStart ts = new ThreadStart(() => { for(int i = 0; i < 10; i++) { Console.WriteLine("Hello"); Thread.Sleep(500); } }); //스레드 인스턴스화 ..

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Homework1234 { class Button { public Action onPress; public Button() { } public void Press() { this.onPress(); } } } using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Homework1234 { public class..

엑셀에 데이터 작성할 때 빈 내용은 기본값으로 지정한다.ex) int 0, string null, bool false etc ============================================================================ using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading; namespace Study004 { public class App { private List questinfos; public App() { Console.WriteLine("App"); DataManager.Ge..

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Homework1234 { class App { public App() { Console.WriteLine("App"); ItemData data = new ItemData(1, "천 옷", eGrade.Rare); Item item = new Item(data); User user = new User(); user.StartCrafting(item); user.completeCrafting(); } } } using System; using System.Collections.Gen..