What will be the output of the following C# program?
class Program
static void Main(string[] args)
string[] strs = ".com", ".net", " ", " ", "test", " ", "hsNameD.com";
var netAddrs = from addr in strs
where addr.Length > 4
addr.EndsWith(".net", StringComparison.Ordinal)
select addr;
foreach (var str in netAddrs)
Console.WriteLine(str);
Console.ReadLine();