আমি যখন কাউন্ট এবং কাউন্ট () এর মধ্যে পার্থক্যটি দেখছিলাম , আমি এর উত্স কোডটি এক নজরে একবার দেখে মনে করেছি Count()
। আমি নীচের কোড স্নিপেট দেখেছি যেখানে আমি ভাবছি কেন checked
কীওয়ার্ডটি প্রয়োজনীয় / প্রয়োজনীয়:
int num = 0;
using (IEnumerator<TSource> enumerator = source.GetEnumerator())
{
while (enumerator.MoveNext())
{
num = checked(num + 1);
}
return num;
}
উত্স কোড:
// 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 এর এখনও এই চেকটি নেই, 4.5 আছে। এটি কিছুটা সম্ভাবনা তৈরি করে যে WinRT পুনরুক্তিকারীদের সমস্যা এড়াতে এটি করা হয়েছিল , নোট করুন যে তারা মদ ব্যবহার করে।
—
হান্স প্যাস্যান্ট