[]
Returns the number of objects in the collection.
For an INames collection, the objects are defined names.
int Count { get; }
ReadOnly Property Count As Integer
INames names = workbook.Names;
names.Add("SalesRange", "=Sheet1!$A$1:$A$5");
int count = names.Count;