C# Coding Assignment- Visual Studio (MUST USE THE ATTACHED SHELL) Full Instructions Attached
//Name //Date //Assignment Description using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace assignment12 { class MyDrone { // Default values for a drone private double numRotors = 4; private double velocity = 5; private double xPos = 50; private double yPos = 50; private static String color = "red"; // Two Constructors for the MyDrone class public MyDrone() { } public MyDrone(double numRotorsParam, double velocityParam, double xPosParam, double yPosParam, String colorParam) { } // "Getters" for the class variables public double getNumRotors() { } public double getVelocity() { } public double getXPos() { } public double getYPos() { } public static String getColor() { } //Main calculation method public double getTimeToHome() { } } class Program { static void Main(string[] args) { //TODO: Fill in the above class and use it //here according to the directions in the assignment } } }