CSScriptCompilers.CCSharpParser.IsUsingDirective C# (CSharp) Method

IsUsingDirective() private method

private IsUsingDirective ( string code ) : bool
code string
return bool
        bool IsUsingDirective(string code)
        {
            if (code.StartsWith("using ") || code.StartsWith("//css_"))
                return true;
            else
                return false;
        }
        #endregion