diff options
author | Stephen Toub <stoub@microsoft.com> | 2016-07-27 20:32:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-27 20:32:15 -0400 |
commit | 05423e24483f7de0fa5507286ad09d7f0bda3ddf (patch) | |
tree | 9c4ddc0a000cd314a896fc0d99a74f167b8e18a5 /src | |
parent | b61adb5a2f93d5350b3c898b06c7895e0516c066 (diff) | |
parent | 4c4d51c3e477b2c34161256c48569d2eebdcbee9 (diff) | |
download | coreclr-05423e24483f7de0fa5507286ad09d7f0bda3ddf.tar.gz coreclr-05423e24483f7de0fa5507286ad09d7f0bda3ddf.tar.bz2 coreclr-05423e24483f7de0fa5507286ad09d7f0bda3ddf.zip |
Merge pull request #6490 from KrzysztofCwalina/ConvertAll
Exposed List<T>.ConvertAll
Diffstat (limited to 'src')
-rw-r--r-- | src/mscorlib/ref/mscorlib.cs | 1 |
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) { } |