클래스 ArrayList 크기가 필요에 따라 동적으로 증가되는 배열을 사용하여 IList 인터페이스를 구현합니다. Hashtable 키의 해시 코드에 따라 구성되는 키/값 쌍의 컬렉션을 나타냅니다. 인터페이스 ICollection 제네릭이 아닌 모든 컬렉션의 크기, 열거자 및 동기화 메서드를 정의합니다. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Collections; //추가 namespace Ex..
제97회 서울 코믹월드 기간 2010.09.26(일) ~ 2010.09.26(일) | 장소 서울 서초구 aT센터 2층 2010 디지털사이니지 및 키오스크산업전 기간 2010.09.27(월) ~ 2010.09.29(수) | 장소 서울 강남구 코엑스(COEX) C홀 2010 동대문 패션쇼핑 페스티벌 기간 2010.10.06(수) ~ 2010.10.09(토) 2010 서울세계불꽃축제 기간 2010.10.09(토) ~ 2010.10.09(토 2010 해외취업박람회 기간 2010.10.09(토) ~ 2010.10.10(일) | 장소 서울 강남구 코엑스(COEX) B홀 2010 서울아트마켓 기간 2010.10.11(월) ~ 2010.10.15(금) | 장소 서울 중구 국립극장 2010 강남 패션페스티벌 기간 201..
n-nv n-nv nvnv -vnv n : 다운 , v 업, - 공피킹 끝부분은 n nv n nv 코드는 A - Bm - D 만 사용 A, Bm, D, A, A, Bm, D 이런순 으로 반복 그런데! 우결에서 나온 서현이 친 코드는 G - Am - C G, Am, C, G, G, Am, C 이런순 으로 치면 쉽게 가능 합니다.
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Ex20String { public partial class MainForm : Form { public MainForm() { InitializeComponent(); } private void Test_Click(object sender, EventArgs e) { txtLog.Clear(); // TextBox 내의 모든 문자열 제거 string str = ..
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Ex19WindowsForms3 { // partial : 하나의 클래스를 두 개 이상의 클래스 정의로 분할 public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Random r..
윈폼으로 만들어서 코딩 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; using System.Drawing; namespace Ex18WindowsForms2 { class TheForm : Form { // Button btn = new Button(); private Button btn; public TheForm() { InitializeComponent(); } public void InitializeComponent() { Text = "Hello, Windows Forms"; Width = 600; Height = 500; BackColo..
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; using System.Drawing; namespace Ex17WindowsForms { class Program { static void Main(string[] args) { // 참조 클릭 - 참조 추가 > 시스템.윈도우폼, 시스템.드로잉 추가 //Forma 다음에 컨트롤 + . 누름 그리고 선택하면 자동으로 using System.Windows.Forms;생성 Form form = new Form(); //윈도우 객체 생성 //윈도우 객체 제어(Method & Property 사용) form.T..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ex16OOP7 { class Program { static void Main(string[] args) { //Thebase b = new Thebase(); Thebase2 b = new TheDerived(); //추상클래스 참조 = 비추상클래스 객체 //인터페이스는 객체 생성 불가능 //IMyInterface obj = new IMyInterface(); IMyInterface obj = new MyImplementayion(); IMyInterface2 obj2 = new MyImplementayion(); obj.Method..
http://codepad.org/
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ex15OOP6 { class Program { static void Main(string[] args) { //1. ToString() Item item = new Item(); item.Number = 1; item.Description = "Test Item"; Console.WriteLine(item.ToString()); //2. Item item2 = new Item(); item2.Number = 1; item2.Description = "Test Item2"; //if(item.Equals(item2)) //if(item..
다운로드 : http://www.wholetomato.com/downloads/ 받은후 크랙 설정! Full Link : http://www.mediafire.com/?z1yj4ymymmz ~ Visual Assist ToolBar ~ ToolBar의 왼쪽부터 차례대로 나열 1. Option(단축키 없음) : Visual Assist의 여러 기능들을 변경, 설정할 수 있다. 2. Goto Method(Alt+M) : 현재 문서의 메쏘드의 리스트를 보여주고, 중간어검색도 가능합니다. 3. Back(Alt+Left Arrow) : 익스플로러의 뒤로가기 기능과 동일 4. Forward(Alt+Right Arrow) : 익스플로러의 앞으로가기 기능과 동일 5. Open Project File(Alt+Shift+..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ex14OOP5 { class Program { static void Main(string[] args) { //1. 메서드 변경 TheBase b = new TheBase(); //b.Method(); TheDerived d = new TheDerived(); // //2. 형변환 TheBase b2 = new TheDerived(); //TheDerived d2 = (TheDerived)new TheBase(); TheDerived d2 = (TheDerived)b2; //3. 메소드 호출 기준 TheBase b3 = new The..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ex13OOP4 { class Program { static void Main(string[] args) { TheDerived deroved = new TheDerived(); deroved.BaseMethod(); } } } **************************************** 코드파일 추가 ********************************************* using System; using System.Collections.Generic; using System.Linq; using System..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ex12OOP3 { class Program { static void Main(string[] args) { Person p1 = new Person("", "", ""); Person p2 = new Person("", "", ""); Person p3 = new Person("", "", ""); Console.WriteLine(p1.GetPersonInfo()); Console.WriteLine(p2.GetPersonInfo()); Console.WriteLine(p3.GetPersonInfo()); Console.WriteLin..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ex11OOP2 { class Program { static void Main(string[] args) { //int x; //x = 10; //할당, 대입 //int y = 20; //초기화 // 생성자메서드 (오버로딩 가능) //Person person = new Person(); //매개변수가 없는 생성자메소드 자동호출 ) //객체 생성 구문 = 생성자 메서드 호출 구문 Person person = new Person(1, "장동선", "011-9425-xxxx", "newtoynt@nate.com"); // 매개변수가 있는 생..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ex10OOP { class Program { static void Main(string[] args) { Person person; //참조변수 생성 person = new Person(); // 객체생성 및 할당 //Person person = new Person(); 이렇게 줄여서 가능 // 1. acces public field //person.Number = 1; //person.Name = "장동건"; //person.Phone = "011-000-6005"; //person.Email = "newto000@nate.com"..
97회 서울 코믹월드 행사 안내 (9월) ▶ 날짜 - 2010년 9월 26일 (일요일 하루 개최) ▶ 장소 - 양재 aT센터 2층 ( http://www.atcenter.co.kr ) ▶ 기획행사 - 동아리 판매전, 우수회지 콘테스트, 일러스트 콘테스트 코스프레 콘테스트, 코스프레 무대행사, 만화노래자랑 ▶ 진행시간 - 일요일 오전 10시 ~ 오후 5시 반 (행사진행상황에 따라 시간은 약간 조정될 수 있습니다.) ▶ 입장료 - 일인당 4000 원 (5세 이상 동일) 행사 당일 행사장 옆 매표소에서 입장권 구입 후 입장 가능 단체할인 : 20명 이상의 단체일 경우 10명당 입장권 한 장 무료 지급 (20명 입장료로 22명 입장 가능, 당일 매표소 문의, 당일 카드결제 불가) ▶ 주최 - 에스이테크노(주) ..
2010 기간 2010.09.13(월) ~ 2010.09.15(수) 장소 서울 강남구 코엑스(COEX) 신관 1F~3F 시간 10:00 ~ 18:00 관련정보 행사정보, 가는방법, 공지사항 주최 (사)한국게임개발자협회 소개 미래에 대한 새로운 정의, KGC가 올해로 10년째를 맞이합니다. 지난 9년간의 성공적인 개최 경험을 바탕으로, 아시아 최대 게임 컨퍼런스..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ex10OOP { class Program { static void Main(string[] args) { Person person; //참조변수 생성 person = new Person(); // 객체생성 및 할당 //Person person = new Person(); 이렇게 줄여서 가능 // 1. acces public field //person.Number = 1; //person.Name = "장동건"; //person.Phone = "011-9425-XXXX"; //person.Email = "newtoynt@nate.com..
//객체지향은? //프로그램으로 제어하고자 하는 모든 대상은 객체다. 규모가 크면 객체지향 규모가 작으면 절차적 이 좋다 추상화 -> 분해하고 재구성
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ex09Array { class Program { static void Main(string[] args) { Random r = new Random(); //난수발생기 선언 int[] ar = new int[10]; for (int i = 0; i < 10; i++) { ar[i] = r.Next(100, 1000); // 100 ~ 999 사이의 난수 // Next 지정된 범위 내의 난수를 발생 } for (int i = 0; i < 10; i++) { Console.WriteLine("ar[{0}] = {1}", i, ar[i])..
아래 확인버젼을 돌리시면 프로그램 돌아가는 내부 과정을 볼 수 있습니다. using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Report01_Array_lotto2 { class Program { static void Main(string[] args) { Random r = new Random(); //난수발생기 선언 int sum; // 합계 int[] ar = new int[6]; // 로또 번호를 저장한 6개의 배열 생성 bool arrays = false; //do ~ while 판별을 위한 bool 초기값 false 로 셋팅 while (true) { do { arrays =..
------------------------------------------- 로또생성기 i) 1 ~ 45 Random 중복 X 6개 추출 ii) 평균( 20 ~ 25 ) 아닐경우 다시 반복하여 출력 Method 써서 코딩 => 출력 ( 사용자가 원하는 만큼 반복 ) ------------------------------------------- using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Report01_Array_lotto { class Program { static void Main(string[] args) { Random r = new Random(); //난수발생기 선언..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Report01_Array_lotto { class Program { static void Main(string[] args) { Random r = new Random(); //난수발생기 선언 double sum = 0; ; int[] ar = new int[49]; while (true) { sum = Random_In_lotto(r, sum, ar); Print_lotto(sum, ar); Console.Write("--------------------------------\n"); Console.Write("중단하려면 y를 입력..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ex08Method3 { class Program { static void Main(string[] args) { Console.WriteLine("{0} / {1} / {2}", Plus(10, 20), Plus(10, 20, 30), Plus(11.11, 22.22)); } private static int Plus(int x, int y) { return x + y; } private static int Plus(int x, int y, int z) { return x + y + z; } private static double P..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ex08Method2 { class Program { static void Main(string[] args) { int x = 10, y = 20; Console.WriteLine("Before Swapping : {0} / {1}", x, y); //전달인자 : ref 넣으면 메소드에서 변경된 값을 그대로 사용 된다. (양반향, main 메소드) //전달인자 : out 넣으면 값은 메소드에 안 넣어지게 되고 메소드에서 // 생긴 값만 받아온다.( main
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ex07Method { class Program { static void Main(string[] args) { //Box 그리기 ( 20 * 20 , '*' ) //*************************** //* * //* * //* * //*************************** Console.Write("박스 그리기에 사용할 문자 : "); string unit = Console.ReadLine(); //넓이, 높이를 입력받아서 그대로 박스 그리기 int nums_1, nums_2; // 넓이와 높이 변수 생성 ..