如何在asp.net中的app_code中访问全局类中的变量

时间:2016-07-13 07:20:26

标签: c# asp.net global-variables

我有一个不在app_code文件夹中的全局类。我在该类中声明了一个静态变量。但是,由于它不在app_code文件夹中,我无法从其他网页访问它。任何人都可以帮助我访问它的内容吗?

1 个答案:

答案 0 :(得分:0)

您可以使用 System.Reflection.MemberInfo info = typeof(YourClass);

进行访问
   using System;

    [AttributeUsage(AttributeTargets.All)]
      public class Global : System.Attribute
       {
        public string Url;

        public Global(string url)   // url is a positional parameter
        {
        this.Url = url;
        }

      }
       [HelpAttribute("Information on the class MyClass")]
        class YourClass
       {
       }


   namespace AttributeAppl
  {
   class Program
   {
    static void Main(string[] args)
    {
     System.Reflection.MemberInfo info = typeof(MyClass);
     object[] attributes = info.GetCustomAttributes(true);

      Global dbi = (Global )Url;
    }
  }
}