摘要: Scenario:OP has alist of complied workflow types, which is created by using reflection to find all types. var assembly = Assembly.GetAssembly(this.GetType()); foreach (Type objType in assembly.GetTypes()) { if (objType.IsSubclassOf(typeof(Activity))) ... 阅读全文
posted @ 2012-06-22 11:28 Leo Tang 阅读(370) 评论(0) 推荐(0)