Microsoft.ResourceManagement.ObjectModel.RmResource.GetString C# (CSharp) Method

GetString() private method

Get string checking if object is null.
private GetString ( object x ) : string
x object
return string
        private string GetString(object x)
        {
            return x == null ? string.Empty : x.ToString();
        }