コード例 #1
0
		private static string FindErrors(string code)
		{
			var tree = CSharpSyntaxTree.ParseText(code);
			var errors = new RedundantIfStyleValidator().FindError(tree);
			return errors;
		}
コード例 #2
0
        private static string FindErrors(string code)
        {
            var errors = new RedundantIfStyleValidator().FindError(code);

            return(errors);
        }
コード例 #3
0
		private static string FindErrors(string code)
		{
			var errors = new RedundantIfStyleValidator().FindError(code);
			return errors;
		}