// To get the length of a List use 'List<T>.Count' List<string> stringList = new List<string>{"string1", "string2"}; stringList.Count // Output: // 2