From 4c4d51c3e477b2c34161256c48569d2eebdcbee9 Mon Sep 17 00:00:00 2001 From: KrzysztofCwalina Date: Wed, 27 Jul 2016 15:25:18 -0700 Subject: [PATCH] Exposed List.ConvertAll --- src/mscorlib/ref/mscorlib.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mscorlib/ref/mscorlib.cs b/src/mscorlib/ref/mscorlib.cs index 965e727ee913..ef85f3caf5c3 100644 --- a/src/mscorlib/ref/mscorlib.cs +++ b/src/mscorlib/ref/mscorlib.cs @@ -4227,6 +4227,7 @@ public void AddRange(System.Collections.Generic.IEnumerable collection) { } public int BinarySearch(int index, int count, T item, System.Collections.Generic.IComparer comparer) { return default(int); } public void Clear() { } public bool Contains(T item) { return default(bool); } + public List ConvertAll(System.Converter converter) { throw null; } public void CopyTo(T[] array) { } public void CopyTo(T[] array, int arrayIndex) { } public void CopyTo(int index, T[] array, int arrayIndex, int count) { }