Ketika saya mencari perbedaan antara Count dan Count () , saya berpikir untuk melirik kode sumber Count()
. Saya melihat potongan kode berikut di mana saya bertanya-tanya mengapa checked
kata kunci itu diperlukan / dibutuhkan:
int num = 0;
using (IEnumerator<TSource> enumerator = source.GetEnumerator())
{
while (enumerator.MoveNext())
{
num = checked(num + 1);
}
return num;
}
Kode sumber:
// System.Linq.Enumerable
using System.Collections;
using System.Collections.Generic;
public static int Count<TSource>(this IEnumerable<TSource> source)
{
if (source == null)
{
ThrowHelper.ThrowArgumentNullException(ExceptionArgument.source);
}
ICollection<TSource> collection = source as ICollection<TSource>;
if (collection != null)
{
return collection.Count;
}
IIListProvider<TSource> iIListProvider = source as IIListProvider<TSource>;
if (iIListProvider != null)
{
return iIListProvider.GetCount(onlyIfCheap: false);
}
ICollection collection2 = source as ICollection;
if (collection2 != null)
{
return collection2.Count;
}
int num = 0;
using (IEnumerator<TSource> enumerator = source.GetEnumerator())
{
while (enumerator.MoveNext())
{
num = checked(num + 1);
}
return num;
}
}
2
.NET 4.0 belum memiliki pemeriksaan ini, 4,5 belum. Membuatnya agak mungkin bahwa ini dilakukan untuk menghindari masalah dengan iterator WinRT , perhatikan bahwa mereka menggunakan uint.
—
Hans Passant