RDFSharp.Model.RDFTypedLiteral.ToString C# (CSharp) Method

ToString() public method

Gives the string representation of the typed literal
public ToString ( ) : String
return String
        public override String ToString()
        {
            return base.ToString() + "^^" + RDFModelUtilities.GetDatatypeFromEnum(this.Datatype);
        }