일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Bootstrap
- 이클립스
- scrollView
- Eclipse
- 자바스크립트
- Web Service
- MANTIS
- SpringSource Tool Suite
- 웹 서비스
- jsp
- javascript
- MSsql
- Redirect
- varags
- decompiler
- Android
- MS-SQL
- WebView
- 자바
- STS
- 안드로이드
- asp.net
- 웹뷰
- 컬럼명
- Java
- TextBox
- Apache Lucene
- Maven
- C#
- html
- Today
- Total
목록C# | ASP.NET/C# (23)
bboks.net™
1. 추상 클래스(abstract class)란? - 서브 클래스의 구조(outline)만 제공하기 위한 목적을 가지고 있다. - 추상 클래스는 직접적으로 객체를 생성 할 수 없다. 2. 추상 클래스의 구조 - 추상 클래스는 서브 클래스에서 정의해야 하는 추상 멤버(method, property)를 가져야 한다. - 추상 멤버는 시그니쳐(signature)만 가진다. 3. 추상 클래스 정의 - 추상 클래스와 멤버는 abstract 키워드를 이용해 선언이 가능하다. //Abstract Class와 Member 선언 //abstract Class 선언 public abstract class Talk { //abstract method 선언 public abstract void speak(); } 4. 추상 ..
C#에서 웹에 있는 파일을 다운 받는 방법은 두가지가 있다. 둘다 WebClient 객체를 사용하지만 하나는 파일 다운만, 다른 방법은 Stream을 이용해 처리가 가능한 방법이다. 여기서는 파일 다운로드 방법만 소개한다. 나머지 방법은 아래의 출처에서~ using System.Net; class Program { static void Main(string[] args) { try { WebClient client = new WebClient(); client.DownloadFile("http://www.google.co.kr/index.html", "c:\\index.html"); } catch (Exception e) { System.Console.WriteLine(e.StackTrace); } } ..
C#의 listview를 사용하다 보면 열을 선택하면 맨 앞의 컬럼만 highlight된다. 이는 listview의 FullRowSelect property를 true로 설정함으로써 해결 할 수 있다. myListView.FullRowSelect = true;
C#에서 웹 페이지의 Reqest를 요청하고 그 결과를 반환하는 클래스 public class HttpGet { private HttpWebRequest request; private HttpWebResponse response; private string responseBody; private string escapedBody; private int statusCode; private double responseTime; public string ResponseBody { get { return responseBody; } } public string EscapedBody { get { return GetEscapedBody(); } } public int StatusCode { get { return..