using System.Collections.Generic;
public static void Test(Version version)
Console.WriteLine("is a version");
public static void Test(FormatException formatException)
Console.WriteLine("is a formatException");
public static void Main()
var list = new List<object>();
list.Add(new FormatException());
foreach (var item in list)