- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
private static List<XElement> processAccountWithAdress(List<Dictionary<string, object>> AccountWithAdress, OrganizationServiceProxy service)
{
foreach (Dictionary<string, object> item in AccountWithAdress)
{
try
{
var adressees = (from n in AccountWithAdress
where n["accountid"].ToString() == item["accountid"].ToString()
select n);