Now this is example list :
List<List<KeyValuePair<string, double>>> dblWordFreqByCluster =
new List<List<KeyValuePair<string, double>>>();
What i want is getting the list count at this main list (dblWordFreqByCluster). Which means getting count of List<KeyValuePair<string, double>>
lists.
I can count them via making foreach iteration which i don't want to because i suppose that would cause unnecessary performance loss.