27
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
5
public static class GeneralExtensions
6
{
7
public static T Cast<T>(this object o)
8
{
9
return (T)o;
10
}
11
}
12
13
public static class EnumExtenstions
14
{
15
public static IEnumerable<string> GetSomethingInLinq(this IEnumerable<object> collection)
16
{
17
return (from object value in collection select value.ToString() ).ToList();
18
}
19
}
20
21
public class Program
22
{
23
public static void Main()
24
{
25
Console.WriteLine("Hello World");
26
}
27
}
Cached Result
Compilation error (line 17, col 32): Could not find an implementation of the query pattern for source type 'object'. 'Select' not found.