示例#1
0
        private static TypeDocumentation GetDocumentationFor <T>()
        {
            var reader = new AssemblyDocumentationReader(typeof(T).Assembly);
            var doc    = reader.GetDocumentationOf <T>();

            return(doc);
        }
示例#2
0
 public void OneTimeSetUp()
 {
     _documentationReader = new AssemblyDocumentationReader(typeof(EmptyType).Assembly);
 }