Write a C# program that inputs a single character and checks to see if it is a numeric digit.
Your program should work as follows:
DIGIT if the user has entered a numeric digit.NOT DIGIT if the user has entered any other character.You should use meaningful variable name(s), correct C# syntax, and indentation in your answer.