Ejemplo n.º 1
0
 public SnapshotVersion(ChangeTrackingCheckpoint checkpoint)
 {
     Debug.Assert(checkpoint != null);
     this.checkpoint = checkpoint;
 }
Ejemplo n.º 2
0
 public Snapshot(ITextSource textSource, ChangeTrackingCheckpoint checkpoint)
     : base(textSource)
 {
     this.version = new SnapshotVersion(checkpoint);
 }