lua不支持的泛型方法
阿新 • • 發佈:2018-04-30
support supported div style 生成 mat PE span ring
1.沒有泛型約束
2.缺少帶約束的泛型參數
3.泛型約束必須為class
1 /// <summary> 2 /// 不支持生成lua的泛型方法(沒有泛型約束) 3 /// </summary> 4 public void UnsupportedMethod1<T>(T a) 5 { 6 Debug.Log("UnsupportedMethod1"); 7 } 8 9 /// <summary> 10 /// 不支持生成lua的泛型方法(缺少帶約束的泛型參數) 11 /// </summary>12 public void UnsupportedMethod2<T>() where T : Foo1Parent 13 { 14 Debug.Log(string.Format("UnsupportedMethod2<{0}>",typeof(T))); 15 } 16 17 /// <summary> 18 /// 不支持生成lua的泛型方法(泛型約束必須為class) 19 /// </summary> 20 public void UnsupportedMethod3<T>(T a) whereT : IDisposable 21 { 22 Debug.Log(string.Format("UnsupportedMethod3<{0}>", typeof(T))); 23 }
lua不支持的泛型方法