프로그래밍

https://dart.dev/ Dart programming language Dart is a client-optimized language for fast apps on any platform dart.dev
Connecting to SQL Server from Mac OSX Connecting to SQL Server from Mac OSX · mkleehammer/pyodbc Wiki · GitHub 아래 내용 입력하여 확인하기 1> select @@VERSION 2> go 명령라인 빠져나오기 1> exit odbcinst.ini, odbc.ini 설정파일 수정하기 odbcinst -J 명령어로 파일 위치 파악 odbcinst.ini 과 odbc.ini 파일 수정 /usr/local/ect/ 에 위치해 있음. odbcinst.ini 파일에 아래 내용 추가하기 [FreeTDS] Description=FreeTDS Driver for Linux & MSSQL Driver=/usr/local/lib/libtds..
Visual Studio 2010 에서 HTML5 인텔리센스를 지원되는지 궁금해서 구글링해봤다. 우선 아래 사이트에서 패치 파일을 다운로드를 받자 http://visualstudiogallery.msdn.microsoft.com/en-us/d771cbc8-d60a-40b0-a1d8-f19fc393127d 패치파일을 설치한 후엔 Visual Studio 메뉴에서 Tools >> Options 선택한 후 문서타입을 HTML5 로 선택하면 된다. 캡쳐화면에는 HTML5 문서타입임을 나타내는 DOCTYPE html> 가 없네.. 단순하게 HTML5 인텔리센스로만 동작하네. 패치파일 설치 후 html_5.xsd 파일이 생성된 위치입니다. HTML5 에서 대해서 알고 싶으시면 아래 링크를 참조하시기 바랍니다. ht..
int? num; int? 는 널값을 허용하는 데이타 형식이다.. num.HasValue 속성을 갖게된다.. int? num = null; 이게 가능하다. int b = num ?? -1; 이건 num 이 널값인 경우 -1 를 대입해라..이런 뜻이다. ?? 는 널값을 판단해 주는 도구이다.. int b = num ?? default(int); 이런 형식도 있다.. 값은 0 이 나온다..
#if DEBUG Console.WriteLine("No arguments have been passed"); #endif // 포함.. using System.Diagnostics; [Conditional("DEBUG")] public static void Message(string traceMessage) { Console.WriteLine("[TRACE] - " + traceMessage); }
Public object this[int index] { Get Set } 클래스의 내부 배열변수를 이용해서 인스턴스를 배열처럼 이용하는 인터페이스를 제공. 참고링크 : http://cafe.naver.com/programminglab.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=18
http://code.msdn.microsoft.com/cs2010samples Visual C# 2010 Samples The Visual Studio 2010 RTM Samples are now live! Samples and documents for C# 4.0 can be found on the Downloads page. The CSharpDynamic samples include several projects showing how to use Dynamic with Office, IronPython and other technologies. There is also a covariance and contravariance example, and an example show how to use ..
http://code.msdn.microsoft.com/cs2008samples >> 2008 코드 샘플을 꼭 봐야 한다..새롭게 추가된 내용이 많아서 꼭 확인하고 가야한다. Visual C# 2008 Samples Our first release on CodeGallery contains updates to the official C# samples that ship with Visual Studio 2008. Language Samples Download Link Please click here or turn to the downloads page to download the samples. We have created a set of language samples to help you get fam..
Visual Studio 2010 and .NET 4 Released The final release of Visual Studio 2010 and .NET 4 is now available. Download and Install Today MSDN subscribers, as well as WebsiteSpark/BizSpark/DreamSpark members, can now download the final releases of Visual Studio 2010 and TFS 2010 through the MSDN subscribers download center. If you are not an MSDN Subscriber, you can download free 90-day trial editi..
http://www.dofactory.com/Patterns/Patterns.aspx