AIT.Tools.VisualStudioTextTransform.DefaultVariableResolver.ResolveVariable C# (CSharp) Method

ResolveVariable() public method

/
public ResolveVariable ( string variable ) : IEnumerable
variable string
return IEnumerable
        public IEnumerable<string> ResolveVariable(string variable)
        {
            if (!string.IsNullOrEmpty(variable))
            {
                var resolved = SimpleResolveVariable(variable);
                if (resolved != null)
                {
                    yield return resolved + Path.DirectorySeparatorChar;
                }
            }
        }