示例#1
0
 public static Doc Create(Doc doc, out Guid stringID, string value = "")
 {
     doc = doc.NewID(out var editID);
     doc = doc.NewID(out stringID);
     return(Create(doc, editID, stringID, value));
 }
示例#2
0
 public static Doc Create(Doc doc, out Guid dictID)
 {
     doc = doc.NewID(out var editID);
     doc = doc.NewID(out dictID);
     return(Create(doc, editID, dictID));
 }