|
Rate question difficulty level
|
2
|
1 Votes
|
a class contains the following functions:
private long func(string a)
{
return 0;
}
private int func(string a)
{
return 0;
}
private long func(int b)
{
return 0;
}
private string func(string a)
{
return string.Empty;
}
is this class will compile / fail at runtime?
if so , why?