Пример #1
0
 public Literal(string lexicalForm, Iri datatype)
 {
     lexicalForm.RequireNonNull("'lexicalForm' parameter must not be null!");
     datatype.RequireNonNull("'datatype' parameter must not be null!");
     LexicalForm = lexicalForm;
     Datatype    = datatype;
     LanguageTag = null;
 }