How to convert long to int in .net?

后端 未结 7 2456
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-18 15:19

I am developing window phone 7 application in silverlight. I am new to the window phone 7 application. I have the long value in String format as follows

String A         


        
相关标签:
7条回答
  • 2021-02-18 15:59

    You can convert the input long to Object and then convert it to int32.

    Object a = e;
    int w = Convert.ToInt32(a); 
    

    It worked for me.

    0 讨论(0)
  • 2021-02-18 16:00

    A Long value stores more data than an Integer 32 value, so if you want to keep all 15 digits you can't convert to a standard Integer.

    But aside from 'which' datatype you want to use, the Convert class should help you i.e. Convert.ToInt64 which may do what you want

    0 讨论(0)
  • 2021-02-18 16:00

    The maximum Int32 value in C# is 2,147,483,647, shorter than the 15 digits you require.

    Are you sure you need to convert this value to an int? It sounds like you'd be better off storing the value in a long, or leaving it as a String.

    0 讨论(0)
  • 2021-02-18 16:05

    You have a number stored as a string, and you want to convert it to a numeric type.

    You can't convert it to type int (also known as Int32), because as the other answers have mentioned, that type does not have sufficient range to store your intended value.

    Instead, you need to convert the value to a long (also known as Int64), instead. The simplest and most painless way to do that is using the TryParse method, which converts a string representation of a number to its 64-bit signed integer equivalent.

    The advantage of using this method (instead of something like Parse) is that it does not throw an exception if the conversion fails. Since exceptions are expensive, you should avoid throwing them unless absolutely necessary. Instead, you specify the string containing the number to convert as the first argument to the method, and an out value to receive the converted number if the conversion succeeds. The return value is a Boolean, indicating whether or not the conversion was successful.

    Sample code:

    private void ConvertNumber(string value)
    {
        Int64 number; // receives the converted numeric value, if conversion succeeds
    
        bool result = Int64.TryParse(value, out number);
        if (result)
        {
             // The return value was True, so the conversion was successful
             Console.WriteLine("Converted '{0}' to {1}.", value, number);
        }
        else
        {
            // Make sure the string object is not null, for display purposes
            if (value == null)
            {
                value = String.Empty;
            }
    
             // The return value was False, so the conversion failed
            Console.WriteLine("Attempted conversion of '{0}' failed.", value);
        }
    }
    
    0 讨论(0)
  • 2021-02-18 16:07

    You can't store a 15 digit integer since the maximum value for an integer is 2,147,483,647.

    What's wrong with a long-Value?

    You could use TryParse() to get the long-Value from yout user input:

    String Am = AmountTextBox.Text.ToString();
    long l;
    Int64.TryParse(Am, out l);
    

    It will return false if the text can't be converted to long, so it's pretty safe to use.

    Otherwise, converting a long to int is a easy as

    int i = (int)yourLongValue;
    

    if you're happy with discarding MSBs and taking LSBs.

    0 讨论(0)
  • 2021-02-18 16:15

    Use Convert.ToInt32(). If the value is too big for an int then it will throw an OverflowException.

    This method can take a whole range of values, including Int64 and Strings.

    0 讨论(0)
提交回复
热议问题