Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 05423e2

Browse files
authored
Merge pull request #6490 from KrzysztofCwalina/ConvertAll
Exposed List<T>.ConvertAll
2 parents b61adb5 + 4c4d51c commit 05423e2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/mscorlib/ref/mscorlib.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4227,6 +4227,7 @@ public void AddRange(System.Collections.Generic.IEnumerable<T> collection) { }
42274227
public int BinarySearch(int index, int count, T item, System.Collections.Generic.IComparer<T> comparer) { return default(int); }
42284228
public void Clear() { }
42294229
public bool Contains(T item) { return default(bool); }
4230+
public List<TOutput> ConvertAll<TOutput>(System.Converter<T,TOutput> converter) { throw null; }
42304231
public void CopyTo(T[] array) { }
42314232
public void CopyTo(T[] array, int arrayIndex) { }
42324233
public void CopyTo(int index, T[] array, int arrayIndex, int count) { }

0 commit comments

Comments
 (0)