You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public get firstName(): string {
return this._firstName;
}
public get lastName(): string {
return this._lastName;
}
public set firstName(value: string) {
this._firstName = value;
}
public set lastName(value: string) {
this._lastName = value;
}
but this
public get firstName(): string {
return this._firstName;
}
public set firstName(value: string) {
this._firstName = value;
}
public get lastName(): string {
return this._lastName;
}
public set lastName(value: string) {
this._lastName = value;
}
I can't find any parameters to custom this behaviour.
Is it possible ?
The text was updated successfully, but these errors were encountered:
Hello,
i would to generate getters and setters by pairs.
I mean not this
but this
I can't find any parameters to custom this behaviour.
Is it possible ?
The text was updated successfully, but these errors were encountered: