You need to sign in to do that
Don't have an account?

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[]'
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[]'
https://developer.salesforce.com/forums/?id=906F0000000AqMeIAK
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)