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

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Mono/Actions.cs')
-rw-r--r--Mono/Actions.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/Mono/Actions.cs b/Mono/Actions.cs
deleted file mode 100644
index fdc9bdf..0000000
--- a/Mono/Actions.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// 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 void Action ();
- delegate void Action<T1, T2> (T1 arg1, T2 arg2);
- //delegate void Action<T1, T2, T3> (T1 arg1, T2 arg2, T3 arg3);
- //delegate void Action<T1, T2, T3, T4> (T1 arg1, T2 arg2, T3 arg3, T4 arg4);
-}
-
-#endif