bool result = boollist[0];
for (int i = 1; i < boollist.Count; i++)
{
result = result & boollist[i];
}
return result;
}
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
{
return null;
}
#endregion
}
您可能感兴趣的文章: