-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
32 lines (26 loc) · 816 Bytes
/
Copy pathProgram.cs
File metadata and controls
32 lines (26 loc) · 816 Bytes
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
32
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace KangLab25_WF
{
static class Program
{
//모든 메뉴 정보를 담은 리스트
public static List<MenuInfo> menuList = new List<MenuInfo>()
{
new MenuInfo() { name = "오레오", price = 10000},
new MenuInfo() { name = "꼬깔콘", price = 10000},
new MenuInfo() { name = "펩시", price = 1500},
new MenuInfo() { name = "코카콜라", price = 2000}
};
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}