private bool IsTheSame(RegionEnd comparisonObject, ComparisonDepth depth) { if (comparisonObject == null) { return(false); } return(base.IsTheSame(comparisonObject, depth)); }
public VBRegionEndPrinter(RegionEnd obj) { this.obj = obj; }
private bool IsTheSame(RegionEnd comparisonObject, ComparisonDepth depth) { if (comparisonObject == null) return false; return base.IsTheSame(comparisonObject, depth); }
protected RegionEnd(RegionEnd reToCopyFrom) : base(null) { reToCopyFrom.CloneInto(this); }
public void RegionEnd() { RegionEnd inter = new RegionEnd(controller, -1); Assert.That(inter.IsTheSame(inter.Clone(), ComparisonDepth.Outer), Is.True); }