2012年10月12日 星期五

c# if簡寫

string result ="";

if(menuType  == 0)
{
  result  = "成立";
}
else
{
  result  = "不成立";
}

等同於
 result  = (menuType == 0 ) ?  "成立": "不成立";

Visual Studio JS intellisense 失效解決方式

  試了好久,發現到工具>選項>IntelliCode js項目設定啟用,重新開啟VS就正常了! 後來發現是TypeScript3.2版有問題停用,使用4.3版的TypeScript即可