function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
santhakumar munuswamysanthakumar munuswamy 

Asp.net integrated salesforce wsdl not working

I am getting below error message and can you pls your suggestion to resolve it

Unable to generate a temporary class (result=1).
error CS0030: Cannot convert type 'SFDC.ListViewRecordColumn[]' to 'SFDC.ListViewRecordColumn'
error CS0030: Cannot convert type 'SFDC.ListViewRecordColumn[]' to 'SFDC.ListViewRecordColumn'
error CS0029: Cannot implicitly convert type 'SFDC.ListViewRecordColumn' to 'SFDC.ListViewRecordColumn[]'
error CS0029: Cannot implicitly convert type 'SFDC.ListViewRecordColumn' to 'SFDC.ListViewRecordColumn[]'
AshishyadavAshishyadav
See if this helps
https://developer.salesforce.com/forums/?id=906F0000000AqMeIAK
 
Jose Medina 4Jose Medina 4
i believeAshish wanted to post this
https://developer.salesforce.com/forums/ForumsMain?state=id#!/feedtype=SINGLE_QUESTION_SEARCH_RESULT&id=906F0000000Ai2JIAS

in short, search for  ListViewRecordColumn in your entire solution. it will take you to the partial classes that define the objects.

Replace ListViewRecordColumn[][]  for ListViewRecordColumn[] (remove one pair of brackets)