WarningLevel属性是做什么的

本文关键字:什么 属性 WarningLevel | 更新日期: 2023-09-27 18:11:13

我在我的代码中使用这个,但我不确定它到底是什么。

<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
CodeBehind="Default.aspx.cs" Inherits="WebApplication1._Default" WarningLevel="4" %>

Thanks in advance

WarningLevel属性是做什么的

指定默认的编译器警告级别;确定语言提供程序将编译警告视为错误的级别。

[ConfigurationPropertyAttribute("warningLevel", DefaultValue = )]
[IntegerValidatorAttribute(MinValue = , MaxValue = )]
public int WarningLevel { get; }

希望能有所帮助