PropertyValue
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
http://www.w3.org/ns/prov#value
  • All we have to do is update Foo<> a bit to carry a flag to indicate if there was an error and maybe a string for the error description. public class Foo<T>{ public Foo(T pVal, Boolean pHasErr, String pErr) { Value = pVal; HasError = pHasErr; Error = pErr; } public Foo(T pVal):this(pVal, false, String.Empty){} public Foo() { } public T Value { get; set; } public Boolean HasError { get; set; } publi
http://www.w3.org/ns/prov#wasQuotedFrom
  • c-sharpcorner.com