I want delete or change class's member name on compile-time
Brian
zoujiaqing at gmail.com
Fri Jun 8 18:13:11 UTC 2018
Like:
class A
{
string b;
string c;
}
compile-time to:
class A
{
string _b;
string c;
}
or:
class A
{
string c;
}
More information about the Digitalmars-d-learn
mailing list