コード例 #1
0
ファイル: Citations.cs プロジェクト: timgurke/Scriber
 public void Add(Citation citation)
 {
     citations[citation.Key] = citation;
 }
コード例 #2
0
 public CitationBuilder(string key, string type)
 {
     citation = new Citation(key);
     citation[nameof(type)] = new TextVariable(type);
 }
コード例 #3
0
 public CitationBuilder(string key, CitationType type)
 {
     citation = new Citation(key);
     citation[nameof(type)] = new TextVariable(TransformType(type));
 }