hey so i keep getting a Compile Error: line 6:102 no viable alternative at character '"' error and i do not understand why. If anyone could explain this it would be great. Code follows:
public class leaderboardController {
public void describeSObjectsSample() {
try {
DescribeSObjectResult[] describeSObjectResults = connection.describeSObjects(new String[] { "Game__c","Game_User_Detail__c"});
}catch(ConnectionException ce) {
ce.printStackTrace();
}
}
}