1 c# 获取当前正在运行的类的程序集

public static Assembly CurrentAssembly
{
get
{
return Assembly.GetExecutingAssembly();
}
}