예제 #1
0
파일: Doc.cs 프로젝트: ralphbecket/CSharp
 public Doc(IGuidSupply?guidSupply = null)
 {
     Items      = EmptyItemDict;
     Edits      = EmptyEditStack;
     Redos      = EmptyEditStack;
     GuidSupply = guidSupply ?? new GuidSupply();
 }
예제 #2
0
파일: Doc.cs 프로젝트: ralphbecket/CSharp
 public Doc NewID(out Guid id)
 {
     GuidSupply = GuidSupply.NewID(out id);
     return(this);
 }