Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Funcs.cs « Mono - github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e2de16868931ba012662689464860b472c71e38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Author:
//   Jb Evain (jbevain@gmail.com)
//
// Copyright (c) 2008 - 2015 Jb Evain
// Copyright (c) 2008 - 2011 Novell, Inc.
//
// Licensed under the MIT/X11 license.
//

#if !NET_3_5 && !NET_4_0

namespace Mono {
	delegate TResult Func<TResult> ();
	delegate TResult Func<T, TResult> (T arg1);
	delegate TResult Func<T1, T2, TResult> (T1 arg1, T2 arg2);
	//delegate TResult Func<T1, T2, T3, TResult> (T1 arg1, T2 arg2, T3 arg3);
	//delegate TResult Func<T1, T2, T3, T4, TResult> (T1 arg1, T2 arg2, T3 arg3, T4 arg4);
}

#endif