using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FakeInventory
{
public class DataManager
{
public static DataManager instance = new DataManager();
//생성자
private DataManager()
{
}
}
}
'C#프로그래밍' 카테고리의 다른 글
List, Dictionary 복습 (0) | 2023.07.27 |
---|---|
과제 (0) | 2023.07.26 |
가짜 인벤토리 만들기 1단계 (0) | 2023.07.26 |
컬렉션 [제네릭 - List<T>, Dictonary <TKey, TValue>, Queue<T>, Stack<T>] (0) | 2023.07.26 |
namespace, 컬렉션[ArrayList, Hashtable, Stack, Queue] (0) | 2023.07.26 |