Define a student class that supports the following fields. (Choose your own names for the fields/properties) id

Question:

Define a student class that supports the following fields. (Choose your own names for the fields/properties)
id - int
name - string
grade - char
---
Properties:
ID - get
Name - get/set
Grade - get
---
Methods:
Constructor - Takes and int for id and string for name.
Set Grade (float score) - Sets the grade to a letter value based upon score, use a standard scale.
To String () - override To String to return Name + ID + Grade as a comma separated list
---
Main creates an object, set the grade and print it out using To String ()
C#
Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: