Overriding methods from Library Project
问题 I am working on Windows Phone 8 application. I have a Windows Phone Class Library project(Called Base) and Windows Phone App(called child). In my Base project i have a class which has methods and static variables. Eg: Class Settings { public static string AppName = "Base"; public virtual List<String> TabDetails() { List<String> TabDetails = new List<string>(); helpTabDetails.Add("AAA"); helpTabDetails.Add("BBB"); return helpTabDetails; } } Now in my child app i am just linking this class (by