Reverses the specified array elements.
| C# | Visual Basic | Visual C++ |
[ObsoleteAttribute("Use Net_Utils.ReverseArray instead of it")] public static Array ReverseArray( Array array )
<ObsoleteAttribute("Use Net_Utils.ReverseArray instead of it")> _ Public Shared Function ReverseArray ( _ array As Array _ ) As Array
[ObsoleteAttribute(L"Use Net_Utils.ReverseArray instead of it")] public: static Array^ ReverseArray( Array^ array )
- array (Array)
- Array elements to reverse.
Returns array with reversed items.
| Exception | Condition |
|---|---|
| ArgumentNullException | Is raised when array is null. |