일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MANTIS
- 웹 서비스
- SpringSource Tool Suite
- Android
- STS
- scrollView
- MS-SQL
- Web Service
- 자바
- 자바스크립트
- C#
- decompiler
- asp.net
- WebView
- Redirect
- 컬럼명
- MSsql
- varags
- 웹뷰
- Maven
- 이클립스
- 안드로이드
- TextBox
- Apache Lucene
- html
- jsp
- javascript
- Bootstrap
- Java
- Eclipse
- Today
- Total
목록C# (23)
bboks.net™
웹서비스 참조 생성에 필요한 클래스 using System; using System.Collections.Generic; using System.Text; using System.Reflection; using System.CodeDom; using System.CodeDom.Compiler; using System.Security.Permissions; using System.Web.Services.Description; namespace WebServiceCall { internal class WsProxy { [SecurityPermissionAttribute(SecurityAction.Demand, Unrestricted = true)] internal static object CallWebSer..
sealed class modifier 클래스를 더이상 상속할수 없게 만들고 싶은때 사용 [attributes] sealed class identifier [class-base] class-body [;] const 필드나 로컬 변수의 선언을 변경하는데 사용한다. const 로 선언된 필드나 로컬 변수는 변경될 수 없음을 지정한다. [attributes] [modifiers] const type declarators; readonly const 와 역활은 같지만 초기화방법이 조금 차이가 있다. 선언과 동시에 초기화 할 수도 있고 생성자등에서 초기화가 가능한다. 즉 const는 compile time의 constant이고 readonly는 runtime에 constant로 사용될 수 있다. [출처] con..
MDI를 사용하다 보면 자식 폼에서 부모 MDI에 접근이 필요한 경우가 있다. C#에서는 MdiParanet라는 변수를 제공하는 이는 폼의 MDI 부모의 레퍼런스이다. 사용 방법은 MDI 부모폼의 이름이 MDIMain이라고 가정했을때 MDIMain parent = (MDIMain)this.MdiParent; parent.SomeMethod(); [참고] How to Access MDI Parent Forms From MDI Child Form
1. XML로 변환할 클래스 선언 public class Person { private string name; public string Name { get { return name; } set { name = value; } } private string age; public string Age { get { return age; } set { age = value; } } private Contract connect; public Contract Connect { get { return connect; } set { connect = value; } } } public class Contract { private string telephone; public string Telephone { get { ..