Writer/WarmingUp Code 썸네일형 리스트형 워밍업 코드 클래스 2 using System; namespace classInterface { // 추상클래스 (선언 최상위 부모클래스) abstract class A { //맴버 변수 public string name = "전광식"; //맴버메소드 (추상클래스는 메소드를 구현할 수 있다) public void Foo() { Console.WriteLine("A class Foo Method"); } // 추상메소드 (구현이 없음) public abstract void Goo(); } // 자식 클래스 선언 (A클래스를 상속 받음) class B : A { //맴버변수 public int age = 31; //부모의 추상 메소드를 Override하여 재구현 public override void Goo() { Console.W.. 더보기 워밍업 코드 클래스 using System; namespace TestClass1 { class Soccer { public delegate void SoccerDel(); public event SoccerDel eventDel; private string[] player; public int length { get{return this.player.Length; } } public Soccer() { player = new string[] {"전광식","박주영","박지성","이영표" }; } public string this[int index] { get { return this.player[index]; } } public void ShotExecute() { if ( eventDel != null) { eventDe.. 더보기 C# ADO.NET 접속 Console접속 SELECT ,UPDATE using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.SqlClient; namespace ConLess { class Program { static void Main(string[] args) { // 커넥션 SqlConnection conn = new SqlConnection(); conn.ConnectionString = @"data source = (local); initial catalog=northwind; user id=sa ; password="; // 데이터세을 쿼리 string selqry = "SELECT categoryID, categoryName FR.. 더보기 ADO.NET 접속 using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.SqlClient; namespace ConsoleApplication51 { class Program { static void Main(string[] args) { string source = "server=KWANG-SIK\\sql2005 ; database= pubs ; uid=sa; pwd=p@ssw0rd!"; SqlConnection conn = new SqlConnection(source); try { conn.Open(); Console.WriteLine("접속성공"); } catch (Exception) .. 더보기 메모장 만들기(MDI)포함 더보기 C# Thread 스레드 ///////////////////////// 멀티 스레드 /////////////////////////// using System; using System.Threading; class threadtest { static void ThreadProc() { for (int i = 0; i < 100; i++) { Console.WriteLine(i); Thread.Sleep(500); } Console.WriteLine("작업스레드종료"); } static void Main() { Thread T = new Thread(new ThreadStart(ThreadProc)); T.Start(); for (;;) { ConsoleKeyInfo cki; cki = Console.ReadKey(); if(cki.. 더보기 C# 객체생성과제 차상봉 박지숙 남현철 권오윤 수길이형 Refresh() 참고 더보기 C# 과제 ppt 10장 참고 버튼을 5개 만들고 한개 누를대마다 텍스트 박스가 생기는것 그리고 텍스트 박스에 숫자를 넣고 버튼이 생성되는것 만들기 더보기 이전 1 2 3 다음