mrfangzheng

Hope and fear are useless. Be confident, and always be prepared for the worst.
  首页  :: 新随笔  :: 联系 :: 管理

Action, Func

Posted on 2008-11-24 20:05  mrfangzheng  阅读(388)  评论(0编辑  收藏  举报

Action无返回值

Func<TResult>有返回值

使用:

Action act = delegate

{

//Do somthing

} ;

this.Dispatcher.BeginInvoke(DispatcherPriority.Noraml, act);