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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System/Array.cs')
-rw-r--r--mcs/class/corlib/System/Array.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/mcs/class/corlib/System/Array.cs b/mcs/class/corlib/System/Array.cs
index 1ab627110a5..b9415e980e0 100644
--- a/mcs/class/corlib/System/Array.cs
+++ b/mcs/class/corlib/System/Array.cs
@@ -681,20 +681,12 @@ namespace System
static int IndexOfImpl<T>(T[] array, T value, int startIndex, int count)
{
-#if NETCORE
- throw new NotImplementedException ();
-#else
return EqualityComparer<T>.Default.IndexOf (array, value, startIndex, count);
-#endif
}
static int LastIndexOfImpl<T>(T[] array, T value, int startIndex, int count)
{
-#if NETCORE
- throw new NotImplementedException ();
-#else
return EqualityComparer<T>.Default.LastIndexOf (array, value, startIndex, count);
-#endif
}
static void SortImpl (Array keys, Array items, int index, int length, IComparer comparer)