Question: For C# Create a static method named IsEven() which takes an integer as an argument and returns true if the argument is an even number,
For C# Create a static method named IsEven() which takes an integer as an argument and returns true if the argument is an even number, and false otherwise.
You do not need to write entire program, only the definition of the method and method call. The output is optional. Use the following example as guide line.
//To write a static method which takes a string as an argument and return a string of a greeting message:
static string greeting(string name) { return string.Format("Hello {0}", name); }
//To call this method:
Console.WriteLine(greeting("Justin"));
//Output
Hello Justin
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
