본문 바로가기

C# WPF 계산기 WPF로 설계한 일반계산기... 소스 (xaml) MC MR MS M+ M- ← CE C ± √ 7 8 9 / % 4 5 6 * 1/x 1 2 3 - = 0 . + Copyright 2013 BeeEye Dmu 소스(cs) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Window.. 더보기
Visual Studio 2012와 2010의 차이점 Visual Studio 2012의 새로운 기능 http://www.microsoft.com/visualstudio/kor/whats-new#story-whats-new Visual Studio 2012을 당장 사용해야 되는 이유 - Tistory http://netframework.tistory.com/entry/Visual-Studio-2012%EC%9D%84-%EB%8B%B9%EC%9E%A5-%EC%82%AC%EC%9A%A9%ED%95%B4%EC%95%BC%EC%A7%80-%EB%90%98%EB%8A%94-%EC%9D%B4%EC%9C%A0 Visual Studio 2012 http://msdn.microsoft.com/library/dd831853.aspx 더보기
Delegate Delegate를 테스트하기 위해 다음과 같은 간단한 프로그램을 만들어보았다. 6번째 줄에서 delegate 함수 void MyDelegate(int a, int b) 를 선언하였다. int 2개를 받아들이고 return 값은 없는 형태의 함수를 대리할 수 있다. 10번째 줄에서 MyDelegate 함수로 myFuncs 을 선언했다. myFuncs 는 함수의 포인터와 같은 동작을 할 수 있다. 26번째 줄부터 2개의 int를 입력받고 return 값이 없는 4개의 함수를 정의하였다. 그리고 Main() 함수의 14번째 줄부터 4줄에서 myFuncs += Add; 와 같이 함수를 추가하였다. 19번째 줄의 myFuncs(5, 3)에 의해 Delegate에 추가된 4개의 함수가 모두 수행된다. 23번쨰 줄에.. 더보기