1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace Patterns { class Program { public static Object Create(string className, Dictionary<String, Object> values) { Type type = Type.GetType(className); Object instance = Activator.CreateInstance(type); foreach (var entry in values) { type.GetProperty(entry.Key).SetValue(instance, entry.Value, null); } return instance; } static void Main(string[] args) { Console.WriteLine(Create("Patterns.Book", new Dictionary<string, object>() { {"Title", "Some titles"}, {"Pages", 100} }));
Console.WriteLine(Create("Patterns.CD", new Dictionary<string, object>() { {"Title", "Some CD"}, {"Volume", 12} })); } }
class Book { public string Title { get; set; } public int Pages { get; set; } public override string ToString() { return string.Format("Book {0} {1}", Title, Pages); } }
class CD { public string Title { get; set; } public int Volume { get; set; } public override string ToString() { return string.Format("CD {0} {1}", Title, Volume); } } }
|