PdfSharp.Drawing.XUnit.GetSuffix()

Here are the examples of the csharp api PdfSharp.Drawing.XUnit.GetSuffix() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

3 Examples 7

19 Source : XUnit.cs
with MIT License
from damienbod

public string ToString(IFormatProvider formatProvider)
        {
            string valuestring = _value.ToString(formatProvider) + GetSuffix();
            return valuestring;
        }

19 Source : XUnit.cs
with MIT License
from damienbod

string IFormattable.ToString(string format, IFormatProvider formatProvider)
        {
            string valuestring = _value.ToString(format, formatProvider) + GetSuffix();
            return valuestring;
        }

19 Source : XUnit.cs
with MIT License
from damienbod

public override string ToString()
        {
            string valuestring = _value.ToString(CultureInfo.InvariantCulture) + GetSuffix();
            return valuestring;
        }