Question: Using c# in visual studio For this exercise, you are asked to write a class to draw shapes of varying sizes. This class should include
Using c# in visual studio


For this exercise, you are asked to write a class to draw shapes of varying sizes. This class should include two methods -one to draw hollow squares, and another to draw isosceles triangles. The two methods and what they should output are explained below. Your program will be tested by directly calling the methods. public static string Drawsquare(int height, int width) This method should return a string of a drawing of a hollow square (not print to Console!). The height parameter will determine the height of the square, and the width will set the width of the square. The square should have a border made of $ characters Make sure to use the character to create new lines in the drawing. For example, if the height was 4 and the width was 5, the string returned from the method should look like: If the size is undrawable if the height or width is less than l), the method should instead return a string that says "Cannot draw that shape." public static string DrawIsoscelesTriangle(int size) This method should return a string of a drawing of an isosceles triangle. The size parameter will determine the size of the peak of the triangle, and the triangle should be filled with $ characters Make sure to use the character to create new lines in the drawing For example, if the size was 3, the string returned from the method should look like: S$$
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
