摘要:
1、删除App.xaml中的 StartupUri="" 2、改造App.xaml.cs public partial class App : Application { public App() { ServiceProvider = GetServiceProvider(); } private 阅读全文
摘要:
下面的案例和代码算不上特别基础,关于基础的C#,网上一大堆,我决定重新看一遍C#本质论, 然后记录下,用来完善我的基础,朋友们可以跳着看 1、开始基础 a、解释下string的不可变 string result; result="HelloWorld!"; 在C#中,string 类型是一个引用类型 阅读全文