代码隐藏文件中的枚举`some.aspx.cs`无法访问

时间:2016-02-10 08:06:25

标签: c# asp.net webforms

我有website project 在我的内心,
App_Code 文件夹
CSharp 文件夹
Models.cs类文件
CommonFunctions.cs类文件
Models.cs

    using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

/// <summary>
/// Summary description for Models
/// </summary>
public class Models
{
    public Models()
    {
        //
        // TODO: Add constructor logic here
        //
    }
}
public enum InsuranceType { firstType, secondType}

现在,我可以在CommonFunctions.cs文件中访问此枚举,例如InsuranceType.firstType

但我无法在default.aspxs.cs页面中访问此枚举。

为什么?缺少什么?

1 个答案:

答案 0 :(得分:1)

.CS 文件中定义名称空间并尝试再次构建。