您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
25 行
568 B
25 行
568 B
using System.Collections.Generic;
|
|
|
|
namespace UnityEditor.Graphing.Util
|
|
{
|
|
public static class UIUtilities
|
|
{
|
|
public static bool ItemsReferenceEquals<T>(this IList<T> first, IList<T> second)
|
|
{
|
|
if (first.Count != second.Count)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
for (int i = 0; i < first.Count; i++)
|
|
{
|
|
if (!ReferenceEquals(first[i], second[i]))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|