我有两个应用程序,一个是Mvc,另一个是WebAPI。是否可以在两个应用程序之间共享对象。
例如,我在单独的库中创建了Test
类:
public static class Test
{
public static string WebApi { get; set; }
public static string Mvc { get; set; }
}
在MVC应用程序的Test.Mvc = "Mvc"
中设置Application_Start
,在WebAPI应用程序的Test.WebApi= "WebAPI"
中设置Application_Start
。但是WebApi
属性在MVC应用程序中是空的。
也许我错过了一些属性或某些设置,这有可能吗?