class DefaultParam { string M1(bool b, string s = "", int i = 0) { return b + s + i; } }