mirror of
https://github.com/github/codeql.git
synced 2026-05-19 21:57:13 +02:00
8 lines
109 B
C#
8 lines
109 B
C#
class DefaultParam
|
|
{
|
|
string M1(bool b, string s = "", int i = 0)
|
|
{
|
|
return b + s + i;
|
|
}
|
|
}
|