summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKrzysztofCwalina <kcwalina@microsoft.com>2016-07-27 15:25:18 -0700
committerKrzysztofCwalina <kcwalina@microsoft.com>2016-07-27 15:25:18 -0700
commit4c4d51c3e477b2c34161256c48569d2eebdcbee9 (patch)
tree1c1774817f69da1511dbbe30aec51fec85121f20 /src
parent50d9704c7918ef6adbfe9b5f10619f0dddd58cc6 (diff)
downloadcoreclr-4c4d51c3e477b2c34161256c48569d2eebdcbee9.tar.gz
coreclr-4c4d51c3e477b2c34161256c48569d2eebdcbee9.tar.bz2
coreclr-4c4d51c3e477b2c34161256c48569d2eebdcbee9.zip
Exposed List<T>.ConvertAll
Diffstat (limited to 'src')
-rw-r--r--src/mscorlib/ref/mscorlib.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mscorlib/ref/mscorlib.cs b/src/mscorlib/ref/mscorlib.cs
index 965e727ee9..ef85f3caf5 100644
--- a/src/mscorlib/ref/mscorlib.cs
+++ b/src/mscorlib/ref/mscorlib.cs
@@ -4227,6 +4227,7 @@ namespace System.Collections.Generic
public int BinarySearch(int index, int count, T item, System.Collections.Generic.IComparer<T> comparer) { return default(int); }
public void Clear() { }
public bool Contains(T item) { return default(bool); }
+ public List<TOutput> ConvertAll<TOutput>(System.Converter<T,TOutput> 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) { }