I want to get all of class in the specific assembly this is my code
var assembly=Assembly.GetExecutingAssembly();
var assemblies = assembly.GetTypes().Where(t => String.Equals(t.Namespace, "RepoLib.Rts.Web.Plugins.Profiler.Models", StringComparison.Ordinal)).ToArray();
when c# code all thing is ok and i get my assemblies but when write in t4
file i dont have any error but my assemblies count is.