Adf.Business.ValueObject.Html.TryParse C# (CSharp) Method

TryParse() public static method

Tries to parse the supplied string into the supplied Html object.
public static TryParse ( string s, Html &result ) : bool
s string The string to parse.
result Html The object.
return bool
        public static bool TryParse(string s, out Html result)
        {
            result = string.IsNullOrEmpty(s) ? Empty : new Html(s);

            return true;
        }

Same methods

Html::TryParse ( string s, IFormatProvider provider, Html &result ) : bool