C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
The System.Linq namespace provides this generic method to test derived types. By using the OfType method, we declaratively locate all the elements of a type.
Example. To start, this example allocates an array of objects on the managed heap. It then assigns more derived types into each of the object reference elements. Next the OfType extension method is invoked.
Notice: It uses the 'string' type inside the angle brackets after the method call but before the parenthesis.
This syntax describes the OfType extension as a generic method. The resulting collection, then, of the OfType invocation has two string elements: the two strings found in the source array.
C# program that uses OfType extension method using System; using System.Linq; using System.Text; class Program { static void Main() { // Create an object array for the demonstration. object[] array = new object[4]; array[0] = new StringBuilder(); array[1] = "example"; array[2] = new int[1]; array[3] = "another"; // Filter the objects by their type. // ... Only match strings. // ... Print those strings to the screen. var result = array.OfType<string>(); foreach (var element in result) { Console.WriteLine(element); } } } Output example another
Discussion. What is another, perhaps more practical, way of using the OfType extension in the C# language? One thing you can do is invoke OfType on the collection of Forms in a Windows Forms program.
And: This enables you to locate declaratively all the form elements of a certain type, such as Button or TextBox.
Tip: For a detailed look at this, please consult the specific article about searching Windows Forms programs.
Summary. The OfType extension is located in the System.Linq namespace in the C# language. It provides a useful way to query for elements of a certain type. As with other LINQ methods, it can be applied to various collection types.
So: Custom type testing algorithms have their place. But OfType provides a simple, query-oriented calling convention.