일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 데브피아
- 신석현
- 실버라이트 코리아
- 김춘배
- 신동혁
- 안드로이드
- 윈도우폰
- 소년포비소프트
- MIX10
- 스마트폰
- 마이크로소프트
- 윈도우모바일
- 옴니아2
- 서진호
- 거제도
- 루나네스
- winmodev
- 윈도우 모바일
- 윈도우폰7
- windows mobile 6.5
- UX베이커리
- 헤이맨
- 소년포비
- 주신영
- 쉐어포인트코리아
- 윈모데브
- 지승욱
- 훈스닷넷
- 윈도데브
- 황광진
- Today
- Total
목록프로그램 세상/C# (78)
소년포비의 세계정복!!
Table of Contents I Moving from Microsoft Visual Studio 2003 to Visual Studio 2010 1. From 2003 to 2010: Business Logic and Data 2. From 2003 to 2010: Designing the Look and Feel 3. From 2003 to 2010: Debugging an Application 4. From 2003 to 2010: Deploying an Application II Moving from Microsoft Visual Studio 2005 to Visual Studio 2010 5. From 2005 to 2010: Business Logic and Data 6. From 2005..
닷넷 하시는 분이라면 아주 유용할 만한 소스인거 같아서 여러분들도 보시라고 올려 드립니다. All-In-One Code Framework 아주 멋지게 잘 만들어 놓은 소스코드네요 ^^ 관련소스 다운로드 링크 : http://1code.codeplex.com/wikipage?title=All-In-One%20Code%20Framework%20Sample%20Catalog&referringTitle=Home
발췌 http://www.schnieds.com/2010/01/essential-free-software-for-net.html Every software nerd has their suite of essential free applications they can’t live without, here’s mine: Development Freebies Visual Studio Express Editions http://www.microsoft.com/exPress/ Free versions of the most excellent IDE, Visual Studio 2008. jQuery http://jquery.com/ Most awesomest xxjavascript library eve..
DirectoryInfo dir = new DirectoryInfo(폴더경로); FileInfo[] files = dir.GetFiles(); foreach(FileINfo F in files) { F.Delete(); } 출처 : Tong - centerkjh님의 Visual C#통 폴더 삭제 하기 * 읽기 전용 파일 포함 디렉토리 삭제 방법 using System.IO; protected void DeleteTempDirectory() { DirectoryInfo tempDirInfo = new DirectoryInfo("temp"); if (tempDirInfo.Exists == true..
다중서버예제.zip 위 그럼 처럼 다중서버 관리를 할수가 있다... 이걸 가지고 여러므로 유용하실 쓸수 있을듯한 느낌이 팍팍? ^^
[출처] 파일 백업 툴 FileSyncer 2.0 - C# 소스 공개|작성자 http://wiz.pe.kr/trackback/599 (위즈군의 라이프로그) 몇 년 전에 개인적으로 데이터 백업을 위해 만들어서 사용하던 프로그램의 소스입니다. 생각보다 많은 분들이 소스를 요청 하셔서 공개를 합니다. 처음부터 소스 공개를 목적으로 만든 프로그램이 아..
5개의 스레드를 스레드풀에 생성해 놓고 이 작업이 끝난 후에 print 문으로 콘솔창에 출력하는 내용 using System; using System.Threading; namespace ThreadPoolTest { class Program { private const int NumThreads = 5; private static int[] inputArray; private static double[] resultArray; private static ManualResetEvent[] resetEvents; private static void Main(string[] ..
using Microsoft.Win32; // RegistryKey 사용을 위해 추가 namespace RegTest { public partial class Form1 : Form { public Form1() { InitializeComponent(); } // 레지스트리 가져오기 private string getReg(string regVal) { RegistryKey reg = Registry.LocalMachine; reg = reg.OpenSubKey("Software\\myProgram", true); if (reg == null) return ""; else return Convert.ToString(reg.GetValue(regV..