Skip to content
YenLin Wu edited this page Oct 15, 2020 · 10 revisions
  • 陣列反序 Reverse an Array

arr_Variable = arr_Variable.( ).Reverse( ).ToArray

  • 排除陣列中的第一個元素 Remove first item of Array

arr_Variable = arr_Variable.Skip(1).ToArray( )