Skip to content

Instantly share code, notes, and snippets.

@gitmatheus
Last active May 31, 2017 14:43
Show Gist options
  • Save gitmatheus/625beb4e82f8ec438818cb56251a92a8 to your computer and use it in GitHub Desktop.
Save gitmatheus/625beb4e82f8ec438818cb56251a92a8 to your computer and use it in GitHub Desktop.
SObject[] sObjectAccounts = new SObject[]{ new Account(Name = 'Account Name') };
processAccounts(sObjectAccounts);
private void processAccounts(SObject[] accounts) {
for (Account acct : accounts) System.debug(acct.Name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment