Closed Souk21 closed 8 years ago
For now, constructor generation only generates the following: public CLASSNAME () { }
public CLASSNAME () { }
It would be nice to be able to pick some fields/proprieties that should be added as arguments.
int count; float ratio; public CLASSNAME (int count, float ratio) { this.count = count; this.ratio = ratio; }
It's generate constructor based on base constructor (Object class has one empty constructor)
Fixed. Try it after C# plugin update.
Thanks.
Works like a charm thanks a lot!
Nice.
Thanks
For now, constructor generation only generates the following:
public CLASSNAME () { }
It would be nice to be able to pick some fields/proprieties that should be added as arguments.