C# Frequently Asked Questions for C++ programmers Andy McMullan Last update: 3-Dec-2000 This FAQ tries to address many of the basic questions that C++ developers have when they first come across C#. I… more →
Digital Angel MasterPaul Lee wrote 1 month ago: 이 포스팅을 한글로 읽기 Let me write down some codes regarding doing some thing in dynamic ways. Change type o … more →
Paul Lee wrote 1 month ago: Read this article in English. 뭘 좀 만들다가 쓰게 된 것들, 한 번 살짝만 정리해봅니다^^ object 의 type 바꾸기 object obj = some … more →
stylejuya wrote 1 month ago: It is easy but, always make a mistake int = 2; int valueProduced = 2*(n++); cout<< valueProduc … more →
stylejuya wrote 2 months ago: Namespaces allow us to group a set of global classes, objects and/or functions under a name. To say … more →
stylejuya wrote 2 months ago: Streams and file I/O I/O Streams What is a stream? A stream is a flow of characters ( or other kind … more →
stylejuya wrote 2 months ago: Inheritance Which one of the following statements regarding C++ class inheritance is FALSE?a.Inherit … more →
stylejuya wrote 2 months ago: Invoke the virtual toString() function To invoke the virtual toString() function defined in Geometri … more →
zzangddol wrote 3 months ago: InvalidatePreview() 함수를 호출한다. … more →
zzangddol wrote 3 months ago: PrintDocument.PrintController 의 값을 변경한다. StandardPrintController, PreviewPrintController 중 한 가지가 가능 … more →
ainvyu wrote 3 months ago: string strDirPath = “C:\\”; string strFilePath = “test.txt”; const char* str … more →
ainvyu wrote 4 months ago: void ReplaceAll (string& strSrc, const string& strFind, const string& strDest){ … more →
Namoh wrote 8 months ago: This code check the chess table for which king is checked or not. Input like follow: ..k..... ppp.pp … more →
Namoh wrote 8 months ago: Here is the quiz. Minesweeper Have you ever played Minesweeper? This cute little game comes with a … more →
initialjk wrote 9 months ago: template<typename Arg1Type> BOOL DoStorageFunction(BOOL (StorageClass::*StorageAction)(Arg1Typ … more →
maidaro wrote 1 year ago: - 간단한 데이터 바인딩 방법 - BindingComplete 이벤트를 구현하여 바인딩 정보를 분석하여 바인딩 데이터를 가공하는 방법 - BindingComplete 이벤트의 호출 … more →
tzara wrote 1 year ago: 며칠전 올렸던 Ruby 소스의 C# 버전. 역시나 온라인에서 기본 샘플 찾아서 살짝 수정한건데 Office Primary Interop Assembly 참조하는 법 때문에 그래도 … more →
지양 wrote 1 year ago: 1. 빈 문자열이라… if (!foo[0]) // 배열 foo의 첫번째 원소가 NULL일까 if (strlen(foo) == 0) // 문자열 foo의 길이가 0일까 성 … more →
Digital Angel Master wrote 1 year ago: C# Frequently Asked Questions for C++ programmers Andy McMullan Last update: 3-Dec-2000 This FAQ tri … more →