CSharpMinifier.CompileUtils.CanCompile C# (CSharp) Method

CanCompile() public static method

public static CanCompile ( string program ) : bool
program string
return bool
        public static bool CanCompile(string program)
        {
            return !Compile(program).Errors.HasErrors;
        }