CSharp examples for System.Reflection:Assembly
Find Of Type from Assembly
using System.Reflection; using System.Linq.Expressions; using System.Linq; using System;/* w ww.j av a 2 s.com*/ public class Main{ public static Type FindOfType(Assembly ns, string typeName) { return ns.GetTypes().FirstOrDefault(x => x.Name == typeName); } }