トップに戻る
tags
using System.Linq; int[] ary1 = new int[] { 1, 1, 2, 3, 3, 1 }; //一意の要素を抜き出して、配列に変換する int[] resultArray = ary1.Distinct().ToArray();
edit