コード例 #1
0
ファイル: MethodFactory.cs プロジェクト: agamat/Ribbon-1
 /// <summary>
 /// Initializes a new instance of the <see cref="Function"/> class.
 /// </summary>
 /// <param name="info">The info.</param>
 /// <param name="threadPool">The thread pool.</param>
 public Function(MethodInfo info, IThreadPool threadPool)
     : base(info, threadPool)
 {
     _theDelegate = DelegateFactory.Create <DelegateFactory.LateBoundFunc>(info);
 }
コード例 #2
0
 internal Function(MethodInfo info)
     : base(info)
 {
     theDelegate = DelegateFactory.Create<DelegateFactory.LateBoundFunc>(info);
 }
コード例 #3
0
ファイル: MethodFactory.cs プロジェクト: Mrding/Ribbon
 /// <summary>
 /// Initializes a new instance of the <see cref="Function"/> class.
 /// </summary>
 /// <param name="info">The info.</param>
 /// <param name="threadPool">The thread pool.</param>
 public Function(MethodInfo info, IThreadPool threadPool)
     : base(info, threadPool)
 {
     _theDelegate = DelegateFactory.Create<DelegateFactory.LateBoundFunc>(info);
 }
コード例 #4
0
 internal Function(MethodInfo info)
     : base(info)
 {
     theDelegate = DelegateFactory.Create <DelegateFactory.LateBoundFunc>(info);
 }