84
1
using System;
2
using System.Reflection;
3
using System.Collections.Generic;
4
using System.Linq;
5
using System.Text;
6
7
public class Program
8
{
9
public class Holder
10
{
11
public string SomeProperty
12
{
13
get;
14
set;
15
}
16
17
public Holder()
18
{
19
}
20
21
public static IEnumerable<object> SomeObjects()
22
{
23
var anons = new List<object>();
24
var myAnonymousType = new
Cached Result