0

这是一种应该将已分配的用户从列表中取出并将未分配的用户保留在列表中的方法。GuidList 在单击按钮时添加了 userId。profileList 用于填充 gridView。

这是代码:

private VList<VW_profiles> FilterAssigned(VList<VW_profiles> profileList)
{
    VList<VW_profiles> sortedList = new VList<VW_profiles>();
    foreach(VW_profiles profile in profileList)
    {
        if(GuidList.Count > 0)
        {
            foreach(Guid userId in GuidList)
            {
                if(profile.UserId != userId)
                {
                    sortedList.Add(profile)
                }
            }
        }       
        else
        {
            sortedList = profileList;
        }
    }
    return sortedList;
}

现在这是我的问题。在将 profileList 中的所有项目也添加到 GuidList 之前,一切似乎都运行良好。然后,我们不再对两个 Guid ID 进行否定,而是重新开始添加每个人。有没有人对如何做到这一点有任何建议,这是一种更有效的方式,并且一旦我们把所有东西都拿出来避免添加。

谢谢!

4

2 回答 2

6

如果VList<T>是 a List<T>,那么你可以这样做:

profileList.RemoveAll(profile => GuidList.Contains(profile.UserId));

如果性能是一个问题并且有很多 Guid 需要删除,那么您可以将 GuidList 设置为HashSet<Guid>.

根据评论编辑:如果您不想修改原始列表,请执行以下操作:

var filtered = new VList<VW_profiles>(
    profileList.Where(profile => !GuidList.Contains(profile.UserId)));

编辑如果您不使用List<T>,这里有一种方法可以用于实现可调整大小的列表IList<T>,也可以用于数组 ( T[])。通过仅从列表末尾删除项目,对于大多数IList<T>.

public static void RemoveAll<T>(this IList<T> list, Predicate<T> match)
{
    if (list == null)
        throw new ArgumentNullException("list");
    if (match == null)
        throw new ArgumentNullException("match");
    if (list is T[])
        throw new ArgumentException("Arrays cannot be resized.");

    // early out
    if (list.Count == 0)
        return;

    // List<T> provides special handling
    List<T> genericList = list as List<T>;
    if (genericList != null)
    {
        genericList.RemoveAll(match);
        return;
    }

    int targetIndex = 0;
    for (int i = 0; i < list.Count; i++)
    {
        if (!match(list[i]) && targetIndex != i)
        {
            list[targetIndex] = list[i];
            targetIndex++;
        }
    }

    // Unfortunately IList<T> doesn't have RemoveRange either
    for (int i = list.Count - 1; i >= targetIndex; i--)
    {
        list.RemoveAt(i);
    }
}

public static void RemoveAll<T>(ref T[] array, Predicate<T> match)
{
    if (array == null)
        throw new ArgumentNullException("array");
    if (match == null)
        throw new ArgumentNullException("match");

    int targetIndex = 0;
    for (int i = 0; i < array.Length; i++)
    {
        if (!match(array[i]) && targetIndex != i)
        {
            array[targetIndex] = array[i];
            targetIndex++;
        }
    }

    if (targetIndex != array.Length)
    {
        Array.Resize(ref array, targetIndex);
    }
}
于 2009-11-16T17:48:22.983 回答
2

您的问题出在以下代码中:

foreach(Guid userId in GuidList)
{
    if(profile.UserId != userId)
    {
        sortedList.Add(profile)
    }
}

它应该更像:

bool inList = false;
foreach(Guid userId in GuidList)
{
    if(profile.UserId == userId)
    {
        inList = true;
    }
}
if (!inList)
    sortedList.Add(profile)

或者,更 LINQ 风格:

bool inList = GuidList.Any(x => x == profile.UserId);
if (!inList)
    sortedList.Add(profile)

您当前的代码更像是:

GuidList.Where(x => x != profile.UserId)
        .Foreach(x => sortedList.Add(x));

我认为这不是你想要的:)

于 2009-11-16T18:52:21.747 回答