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

github.com/mono/Lucene.Net.Light.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/Support/Compatibility/Func.cs')
-rw-r--r--src/core/Support/Compatibility/Func.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/core/Support/Compatibility/Func.cs b/src/core/Support/Compatibility/Func.cs
new file mode 100644
index 0000000..508c6a7
--- /dev/null
+++ b/src/core/Support/Compatibility/Func.cs
@@ -0,0 +1,29 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+namespace System
+{
+#if NET35
+ public delegate TResult Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(T1 arg1, T2 arg2, T3 arg3, T4 arg4,
+ T5 arg5, T6 arg6, T7 arg7, T8 arg8,
+ T9 arg9);
+
+ public delegate TResult Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(T1 arg1, T2 arg2, T3 arg3, T4 arg4,
+ T5 arg5, T6 arg6, T7 arg7, T8 arg8,
+ T9 arg9, T10 arg10);
+#endif
+}