PreviousNext

Code Contracts in C#

by bill-s, 2015-08-29T08:37:01.000Z

Code Contracts API includes classes for static and runtime checks of code and allows you to define preconditions, postconditions, and invariants within a method. The Contracts class is found in the System.Diagnostics namespace.

Read More