Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9137325
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:05:24+00:00 2026-06-17T09:05:24+00:00

I have a web services and a web aplication. The web service has the

  • 0

I have a web services and a web aplication.
The web service has the following code:

List<string> listCen =new List<string>();
serviciowebclienteKmeans.ServicioWebKmeans serv = new serviciowebclienteKmeans.ServicioWebKmeans();
 serv.Parameters(element, number, out listCen);

I don’t enter more detail that is not necesary, in my web application I have the following code

 public double[][] Parameters(int N_element, int N_number, out List<string> list2)
 {

 }

but I receive the error that “cannot convert System.Collections.Generic.List to string[]”

Could someone explain the reason for this, by the way I am using Visual Studio 2010 Ultimate
and C#, i forgot to mention that one of the expectect result from de web services in the OUT statement is a list of string that may have 3 to 20 so what i really need is the list of string

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T09:05:24+00:00Added an answer on June 17, 2026 at 9:05 am

    So if I understand correctly, the first code snippet is accessing the web application via an auto-generated web reference class. Is that correct?

    Even though your method uses a List<string> in its definition, this is indistinguishable from an array in terms of the way the data is transmitted between the web application and the calling code. Visual Studio interprets the web application’s definition in such a way that List<>s are treated as arrays in the reference class. The solution is simple – just pass it an array:

    string[] listCenAry;
    serviciowebclienteKmeans.ServicioWebKmeans serv = new serviciowebclienteKmeans.ServicioWebKmeans();
    serv.Parameters(element, number, out listCenAry);
    
    // if you need a List<string>:
    List<string> listCen = new List<string>(listCenAry);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a .net web application which has a reference to a web service.
I am new to iPhone application development, i have used the web services and
I have developed a Web service using WCF Service Application. This service application is
I have a Web Service and an Android application that uses this web service.
I have a web application containing two web services, let's say PublicHello.asmx and RestrictedHello.asmx
I have a RESTful web service which runs on Glassfish Application Server. When I
We have a Java web service that we call from our application. When we
I have a J2EE application with a web service which goes like http://servername/service?task=getFile&id=25 How
I have an ASP.net web service that I'm using for a web application which
I have a DESKTOP application which interacts with a web service through their RESTful

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.