Mike May

Results 26 issues of Mike May

See the [flag-enums exercise](https://github.com/exercism/v3/blob/master/languages/csharp/exercises/concept/flag-enums/.meta/design.md). Two features are required for this exercise: - Verify that the `Permission` enum is marked with the `[Flags]` attribute. - Suggest using `byte` as the enum's...

Given the code ```csharp int Foo() { try { // try stuff } catch (Exception) { // catch stuff } return 0; } ``` Advise that the return statement should...

See the [properties exercise](https://github.com/exercism/v3/edit/master/languages/csharp/exercises/concept/properties/.meta/design.md). There 7 features required for the properties exercise: 1. If `WeighingMachine.Units` is not auto-implemented then the following comment should be made: "The appropriate form for a...

See the [method-overloading exercise](https://github.com/exercism/v3/blob/master/languages/csharp/exercises/concept/method-overloading/.meta/design.md). The following feature should be added: There are three overloaded `Describe()` methods which each take a single parameter (character, destination and travel method. They are not...

See the [basics exercise](https://github.com/exercism/v3/blob/master/languages/csharp/exercises/concept/basics/.meta/design.md). There are two features to be added: - Verify that the `RemainingMinutesInOven()` method calls the `ExpectedMinutesInOven()` method. - Verify that the `ElapsedTimeInMinutes()` method calls the `PreparationTimeInMinutes()`...

See the [inheritance exercise](https://github.com/exercism/v3/blob/master/languages/csharp/exercises/concept/inheritance/.meta/design.md). There are two features required: - Verify that the constructor of the `Character` class uses the `protected` modifier. - Verify that the various fields used (hit...