Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

C# 7.0 에서 추가된 패턴매칭을 사용하겠습니다.  ( if,switch 를 좀더 유연하게 클래스와 매칭하여 사용) 


Code Block
languagec#
themeEmacs
title개선된 패턴매칭예
linenumberstrue
switch (message)
{
    case Cmd cmd:        
        break;
    case "snap":       
        break;
    case "print":        
        break;
}



컴파일러 프로젝트내에서 업그레이드 : Install-Package Microsoft.Net.Compilers -Version 2.3.2

...