2013年12月13日 星期五

c# 委派使用方式

1
2
3
4
5
6
7
8
9
10
11
12
13
14
 //宣告委派型別
 public delegate void  DelegateTest(string name);
 private void button3_Click(object sender, EventArgs e)
 {
    //實體化型別並設定對應方法
    DelegateTest del= Show;
    //傳入字串到方法
    del.Invoke("test");
 }

 public static void Show(string value)
 {
    MessageBox.Show(value);
 }

Visual Studio JS intellisense 失效解決方式

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