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