분류 전체보기 (4536) 썸네일형 리스트형 Adapter Pattern http://www.codeproject.com/Articles/342082/Understanding-and-Implementing-the-Adapter-Pattern?display=Print 위에서 퍼온 글입니다. Download Source C++ - 7.3 KB Download source C# - 7.8 KB Introduction This article aims at understanding when we could find the Adapter pattern useful and how can we have a rudimentary implementation of the Adapter pattern using C# and C++. Background It was almost 6 years bac.. c#으로 BHO(Browser Helper Object) 만들기 http://www.codeproject.com/Articles/350432/BHO-Development-using-managed-code 위에서 퍼온 글입니다. Introduction Browser Helper Object (BHO) is a plug-in for Internet Explorer (IE). BHO let developers to drive IE. A plug-in is a program which extends the functionality of a browser. It can be used to retrieve information or modify the content of the webpage that is being displayed in a browser window, or .. iis8 express 다운 받는곳 http://www.microsoft.com/download/en/details.aspx?id=29055 위에서 다운받어서 함 써봅시다. Long Polling with MVC.NET http://blogs.claritycon.com/blog/2011/04/12/roll-your-own-mvc-3-long-polling-chat-site/위의 사이트에서 퍼온 글입니다. 12 Apr 11 Roll Your Own MVC 3 Long Polling Chat Site By: Jacob Gable I recently read a great article on WebSocket alternatives in MVC by Clay Lenhart and decided to write up a quick proof of concept Chat Server Example for.. .Net 4.5 와 IIS8에서 Websocket을 지원합니다. 아.. 드디어 MS에서 웹소켓을 지원하네요 지금은 IIS8과 .Net4.5가 베타 버전이지만 웹소켓을 확실히 지원하네요 모두 기뻐하시길.... 사용법은 간단하고 심플하며 아래와 같습니다. public async Task MyWebSocket(AspNetWebSocketContext context) { WebSocket socket = context.WebSocket; while (true) { ArraySegment buffer = new ArraySegment(new byte[1024]); // Asynchronously wait for a message to arrive from a client WebSocketReceiveResult result = await socket.ReceiveAsync(b.. 첫번째 Sheet의 Excel Data 읽어오기 작업을 하다가 첫번째 Sheet의 데이터를 읽어 오는 일이 있었다. 기존에 대부분 작업은 Sheet이름이 있어 그 이름으로 쿼리를 해서 읽어왔는데 Sheet이름이 유동적으로 변경되어 다음과 같이 했다. string connectionString = string.Format("Provider=Microsoft.Jet.OLEDB.4.0; data source={0}; Extended Properties=\"Excel 8.0;Imex=1;HDR=No;\"", path); var ds = new DataSet(); using (OleDbConnection conn = new OleDbConnection(connectionString)) { conn.Open(); var dtSchema = conn.GetOleD.. .NET 쓰레드 콜 스택 덤프 (5) http://blog.naver.com/techshare/100152100434 위에서 퍼온 글입니다. .NET 쓰레드 콜 스택 덤프 (5) - ICorDebug 인터페이스 사용법 개발자 2012/02/26 01:32 http://blog.naver.com/techshare/100152100434 .NET 쓰레드 콜 스택 덤프 (1) - 다른 쓰레드의 스택 덤프 구하는 방법 .NET 쓰레드 콜 스택 덤프 (2) - Managed Stack Explorer 소스 코드를 이용한 스택 덤프 구하는 방법 .NET 쓰레드 콜 스택 덤프 (3) - MSE 소스 코드 개선 .NET 쓰레드 콜 스택 덤프 (4) - .NET 4.0을 지원하지 않는 MSE 응용 프로그램 원인 분석 .NET 쓰레드 콜 스택 덤프 (5) -.. Asp.Net Excel Export 한글깨짐 방지 Response.Charset = "euc-kr"; Response.ContentEncoding = System.Text.Encoding.GetEncoding("euc-kr"); 위의 코드를 삽입해 주면 해결끝... 모르면 고생..... 이전 1 ··· 536 537 538 539 540 541 542 ··· 567 다음