222.

Which of the following statements is False about Non-Generic Collection?

The non-generic collections have been part of the .NET Framework since version 1.0. They are defined in the System.Collections namespace. The non-generic collections are general purpose data structures that operate on object references. Thus, they can manage any type of object, but not in a type-safe manner.

// Generic collection
List list = new List();
list.Add("Any object");


// Non generic collection
List list = new List();
list.Add("Any object");