Logo

Programming-Idioms

History of Idiom 19 > diff from v20 to v21

Edit summary for version 21 by :
New Csharp implementation by user [zehberk]

Version 20

2016-02-16, 15:53:56

Version 21

2016-02-16, 17:42:56

Idiom #19 Reverse a list

Reverse the order of the elements of list x .
This may reverse "in-place" and destroy the original ordering.

Idiom #19 Reverse a list

Reverse the order of the elements of list x .
This may reverse "in-place" and destroy the original ordering.

Imports
System.Collections.Generic;
Code
x.Reverse();
Doc URL
https://msdn.microsoft.com/en-us/library/b0axc2h2%28v=vs.110%29.aspx