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

  • Home
  • SEARCH
  • 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 7950719
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T02:21:27+00:00 2026-06-04T02:21:27+00:00

On the client, I have an array of ints on which I call a

  • 0

On the client, I have an array of ints on which I call a ToString method; I’m then sending that string to the server via ajax.

On the server, I’m writing this:

var TestList = (from string s in TheString.Split(',')
                select Convert.ToInt64(s)).ToList<long>();

Is this going to crash if the incoming string actually contains unexpected values?

Thanks.

  • 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-04T02:21:28+00:00Added an answer on June 4, 2026 at 2:21 am

    If the string contains unexpected values it could throw a FormatException or an OverflowException as mentioned in the documentation for Convert.ToInt64(string).

    To avoid the exception you could use bool long.TryParse(string, out long).

    List<long> testList = new List<long>();
    foreach (string s in theString.Split(','))
    {
        long number;
        if (long.TryParse(s, out number))
        {
            testList.Add(number);
        }
        else
        {
            // Do something?
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a client application that creates an array of boolean arrays which I
We have client server based app which saves user related data into a zip
I have client-server app. Client on C++, server on Java. I am sending byte-stream
I have an array that has a list of PID, Email and Client in
I have an array list on my server side that i want to use
I have a server that receives a compressed string (compressed with zlib) from a
I have an array that contains a list of vertices which I copy to
I have an array of int which I want to send to other server
I have Client/Server System (using Socket) with multiple clients and single server, which is
Server at location A I have a Service hosted which will process array received(ByRef)

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.