AA.Compare Project to Match not runToDoCollectionFirst

Removed Layered AppSettings with Nested Objects at First Level
This commit is contained in:
2024-12-28 19:34:09 -07:00
parent 3ff8153393
commit 0215e838e7
110 changed files with 6331 additions and 1275 deletions

View File

@ -39,4 +39,11 @@ public class Location(int bottom, double confidence, int left, int right, int to
public static bool operator !=(Location location1, Location location2) => !(location1 == location2);
public static Location Get(int bottom, double confidence, int height, int left, int right, int top, int width, int zCount)
{
Location result = new(bottom, confidence, left, right, top);
_ = Stateless.Methods.Location.Check(bottom, height, left, right, top, width, zCount, throwException: true);
return result;
}
}