2016-05-28から1日間の記事一覧

C# Intractive をコマンドラインから使う

>csi Microsoft (R) Visual C# インタラクティブ コンパイラ バージョン 1.2.0.60317 Copyright (C) Microsoft Corporation. All rights reserved. 詳細については、「#help」と入力します。 > #r "System.Windows.Forms" > using System.Windows.Forms; > n…

C# Intractive をVisual Studioから使う

Introducing the Visual Studio 'C# REPL' https://channel9.msdn.com/Events/Visual-Studio/Connect-event-2015/103 https://www.visualstudio.com/news/vs2015-update1-vs で Visual Studio 2015 Update 1 に C# Intractive がはいった。 まだnugetに対応…

外だしSQLが少し書きやすくなる C# 6.0

nameof(xxx) と $"" の組み合わせが便利だ。 https://github.com/dotnet/roslyn/wiki/New-Language-Features-in-C%23-6#string-interpolation https://github.com/dotnet/roslyn/wiki/New-Language-Features-in-C%23-6#nameof-expressions外出しSQLが書きや…