Skip to content

Commit f6abfa8

Browse files
committed
Reverted an accidental incorrect [Obsolete]
1 parent 66923b7 commit f6abfa8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Microsoft.Toolkit/Extensions/ArrayExtensions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ public static IEnumerable<T> GetColumn<T>(this T[,] rectarray, int column)
9191
/// <param name="rectarray">The source array.</param>
9292
/// <param name="column">Column record to retrieve, 0-based index.</param>
9393
/// <returns>Yielded enumerable of column elements for given column, and default values for smaller inner arrays.</returns>
94-
[Obsolete("This helper will be removed in a future release, use the APIs from Microsoft.Toolkit.HighPerformance to replace it")]
9594
public static IEnumerable<T> GetColumn<T>(this T[][] rectarray, int column)
9695
{
9796
if (column < 0 || column >= rectarray.Max(array => array.Length))

0 commit comments

Comments
 (0)