Question: 3 cs files to be created. 1 . Create a class DSC . cs . - - One data memeber: private string schoolName,

3 cs files to be created. 1. Create a class "DSC.cs".-- One data memeber: private string schoolName, set default value to "Daytona State College". Create a property for it.(10%)-- Create a method "public virtual string ShowAddress()",10%) return "1200 W. International Speedway Blvd., Daytona Beach, Florida 32114"; 2. Create a class "Campus.cs", inheritate "DSC.cs".-- One data memeber: private string campusName. Create a property for it.(10%)-- Create a constructor "public Campus(string cName)", set value for campusName. (10%)-- override ShowAddress(), return "1770 Williamson Blvd., Daytona Beach, Florida 32117"; (15%)-- Create "public string Departments()",(15%) return "Computer Scinece Department, Emergency Care Department, Police Academy"; -- override ToString(), use above properties and methods to display the following result when it is called. Daytona State College Advanced Technology College (15%) is located at 1770 Williamson Blvd., Daytona Beach, Florida 32117, it has Computer Scinece Department, Emergency Care Department, Police Academy 3. Create "Program.cs",(15%){ Campus atc = new Campus("Advanced Technology College"); Console.WriteLine(atc.ToString()); }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!