System.Waf.Foundation.DataErrorInfoSupport.DataErrorInfoSupport C# (CSharp) Méthode

DataErrorInfoSupport() public méthode

Initializes a new instance of the DataErrorInfoSupport class.
instance must not be null.
public DataErrorInfoSupport ( object instance ) : System.Linq
instance object The instance.
Résultat System.Linq
        public DataErrorInfoSupport(object instance)
        {
            if (instance == null) { throw new ArgumentNullException(nameof(instance)); }
            this.instance = instance;
        }
DataErrorInfoSupport