UnityEditor.ASUpdateWindow.GetGUIDs C# (CSharp) Method

GetGUIDs() public method

public GetGUIDs ( ) : string[]
return string[]
        public string[] GetGUIDs()
        {
            List<string> list = new List<string>();
            if (this.lv.row < 0)
            {
                return null;
            }
            for (int i = this.lv.row; i < this.lv.totalRows; i++)
            {
                for (int j = 0; j < this.changesets[i].items.Length; j++)
                {
                    if (!list.Contains(this.changesets[i].items[j].guid))
                    {
                        list.Add(this.changesets[i].items[j].guid);
                    }
                }
            }
            return list.ToArray();
        }