취미 기록용 블로그
사둔지 서너달 된거 같은 WPF 책을 읽어보기 시작했는데 초반부 예제코너에 나옴 using System; using System.Windows; using System.Windows.Input; namespace kr.co.linsoo.test1 { class SayHello : Application { [STAThread] public static void Main() { Window win = new Window(); win.Title = “세이핼로”; win.Show();… “read more”
int tmp = 0; double result = 0; for (int i=0; i<32; i++) { tmp = aa >> (31 – i); if (tmp > 0) { result += (double)1.0 / Math.Pow(2, (i+1)); } } result *= 1000; 타임스탬프에 Decimal Fractional… “read more”
일단 헤더에 using System.IO; 첨부 해주시고 MemoryStream ms = new MemoryStream(); m_XML.Save(ms); //xml을 메모리 스트림에 저장한다. // utf-8: EF BB BF (3) // utf-16 big-endian: FE FF (2) // utf-16 little-endian: FF FE (2) // utf-32 big-endian: 00 00 FE… “read more”
C# 책을 보는데 value 타입과 reference 타입에 대한게 나옴 그냥 간단하게 공부용으로 정리함. class anotherclass{ public: int id1; int id2; anotherclass() { id1 = 5; id2 = 7; } void GetID(int &ID1, int &ID2){ ID1 = id1; ID2 = id2;… “read more”