例如:
public T AddElement<T>(Func<T> buildFunc) where T : UIElement
和
public delegate UIElment buildFunc();
public UIElement AddElement(UIElement buildFunc)
有区别吗? 除了写法上简单点没看出来
例如:
public T AddElement<T>(Func<T> buildFunc) where T : UIElement
和
public delegate UIElment buildFunc();
public UIElement AddElement(UIElement buildFunc)
有区别吗? 除了写法上简单点没看出来