IQMap.Impl.Support.ParameterParser.CleanParmName C# (CSharp) Method

CleanParmName() protected method

protected CleanParmName ( string text ) : string
text string
return string
        protected string CleanParmName(string text)
        {
            if (!string.IsNullOrEmpty(text) && text.Length > 0 && text[0]!='@')
            {
                return "@" + text;
            }
            else
            {
                return text;
            }
        }