J
John Bailo
Create a method BBB
private String BBB(String s)
{
return s + "hello";
}
Then call the method with
String BBB = BBB(company);
This will work in java, but not in c#;
private String BBB(String s)
{
return s + "hello";
}
Then call the method with
String BBB = BBB(company);
This will work in java, but not in c#;