我有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
页面中访问此枚举。
为什么?或缺少什么?
答案 0 :(得分:1)
在 .CS 文件中定义名称空间并尝试再次构建。