pgenfer / mixinSharp

extension for VS2015 that adds mixins to C#
MIT License
11 stars 1 forks source link

Add support for variables with reserved keywords. #23

Closed pgenfer closed 7 years ago

pgenfer commented 7 years ago

Given the following method:

FindImplementationsOfInterface(Classifier @interface)

The generated delegation code would currently result in

FindImplementationsOfInterface(Classifier interface)

which leads to a syntax error because the reserved keyword is not prefixed with an "@" sign.

The generated code should also support reserved keywords

pgenfer commented 7 years ago

Fixed in 1.6.1