This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class MultipleXmlDocumentationProvider : IDocumentationProvider, IModelDocumentationProvider | |
| { | |
| // 多個 XPathNavigator | |
| private IList<XPathNavigator> _documentNavigators = new List<XPathNavigator>(); | |
| private const string TypeExpression = "/doc/members/member[@name='T:{0}']"; | |
| private const string MethodExpression = "/doc/members/member[@name='M:{0}']"; | |
| private const string PropertyExpression = "/doc/members/member[@name='P:{0}']"; | |
| private const string FieldExpression = "/doc/members/member[@name='F:{0}']"; | |
| private const string ParameterExpression = "param[@name='{0}']"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="container-fluid"> | |
| <form> | |
| <fieldset> | |
| <legend>Basic Information (Standard Form)</legend> | |
| <div class="row-fluid"> | |
| <div class="control-group span4"> | |
| <label class="control-label">姓名</label> | |
| <div class="controls"> | |
| <input type="text" name="date" placeholder=".input-block-level works fine!" class="input-block-level" /> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public enum Order | |
| { | |
| Ascending, | |
| Descending | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Drawing; | |
| using System.Drawing.Drawing2D; | |
| using System.Drawing.Imaging; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Threading.Tasks; | |
| namespace HexDigits.Drawing |
NewerOlder