Last active
May 31, 2017 14:43
-
-
Save gitmatheus/625beb4e82f8ec438818cb56251a92a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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