System.Int64 Structure

public struct Int64 : IComparable, IFormattable, IComparable<Int64>, IEquatable<Int64>

Base Types

Object
  ValueType
    Int64

This type implements IComparable, IFormattable, System.IComparable<System.Int64>, and System.IEquatable<System.Int64>.

Assembly

mscorlib

Library

BCL

Summary

Represents a 64-bit signed integer.

Description

The Int64 data type represents integer values ranging from negative 9,223,372,036,854,775,808 to positive 9,223,372,036,854,775,807; that is, hexadecimal 0X8000000000000000 to 0X7FFFFFFFFFFFFFFF.

See Also

System Namespace

Members

Int64 Methods

Int64.CompareTo(long) Method
Int64.CompareTo(System.Object) Method
Int64.Equals(long) Method
Int64.Equals(System.Object) Method
Int64.GetHashCode Method
Int64.Parse(System.String) Method
Int64.Parse(System.String, System.Globalization.NumberStyles) Method
Int64.Parse(System.String, System.IFormatProvider) Method
Int64.Parse(System.String, System.Globalization.NumberStyles, System.IFormatProvider) Method
Int64.ToString(System.IFormatProvider) Method
Int64.ToString(System.String, System.IFormatProvider) Method
Int64.ToString() Method
Int64.ToString(System.String) Method

Int64 Fields

Int64.MaxValue Field
Int64.MinValue Field


Int64.CompareTo(long) Method

public int CompareTo(long value);

Summary

Returns the sort order of the current instance compared to the specified Int64.

Parameters

value
The Int64 to compare to the current instance.

Return Value

The return value is a negative number, zero, or a positive number reflecting the sort order of the current instance as compared to value. For non-zero return values, the exact value returned by this method is unspecified. The following table defines the return value:

Return ValueDescription
A negative numberCurrent instance < value.
ZeroCurrent instance == value.
A positive numberCurrent instance > value.

Description

[Note: This method is implemented to support the System.IComparable<Int64> interface.]

See Also

System.Int64 Structure, System Namespace

Int64.CompareTo(System.Object) Method

public int CompareTo(object value);

Summary

Returns the sort order of the current instance compared to the specified Object.

Parameters

value
The Object to compare to the current instance.

Return Value

The return value is a negative number, zero, or a positive number reflecting the sort order of the current instance as compared to value. For non-zero return values, the exact value returned by this method is unspecified. The following table defines the return value:

Return ValueDescription
A negative numberCurrent instance < value.
ZeroCurrent instance == value.
A positive numberCurrent instance > value, or value is a null reference.

Exceptions

Exception TypeCondition
ArgumentExceptionvalue is not a Int64 and is not a null reference.

Description

[Note: This method is implemented to support the IComparable interface.]

See Also

System.Int64 Structure, System Namespace

Int64.Equals(long) Method

public override bool Equals(long obj);

Summary

Determines whether the current instance and the specified Int64 represent the same value.

Parameters

obj
The Int64 to compare to the current instance.

Return Value

true if obj represents the same value as the current instance; otherwise, false .

Description

[Note: This method is implemented to support the System.IEquatable<Int64> interface.]

See Also

System.Int64 Structure, System Namespace

Int64.Equals(System.Object) Method

public override bool Equals(object obj);

Summary

Determines whether the current instance and the specified Object represent the same type and value.

Parameters

obj
The Object to compare to the current instance.

Return Value

true if obj represents the same type and value as the current instance. If obj is a null reference or is not an instance of Int64, returns false .

Description

[Note: This method overrides System.Object.Equals(System.Object).]

See Also

System.Int64 Structure, System Namespace

Int64.GetHashCode Method

public override int GetHashCode();

Summary

Generates a hash code for the current instance.

Return Value

A Int32 containing the hash code for the current instance.

Description

The algorithm used to generate the hash code is unspecified.

[Note: This method overrides System.Object.GetHashCode.]

See Also

System.Int64 Structure, System Namespace

Int64.Parse(System.String) Method

public static long Parse(string s);

Summary

Returns the specified String converted to a Int64 value.

Parameters

s
A String containing the value to convert. The string is interpreted using the System.Globalization.NumberStyles.Integer style.

Return Value

The Int64 value obtained from s.

Exceptions

Exception TypeCondition
ArgumentNullExceptions is a null reference.
FormatExceptions is not in the correct style.
OverflowExceptions represents a number greater than System.Int64.MaxValue or less than System.Int64.MinValue.

Description

This version of System.Int64.Parse(System.String) is equivalent to System.Int64.Parse(System.String) (s, System.Globalization.NumberStyles.Integer, null ).

The string s is parsed using the formatting information in a NumberFormatInfo initialized for the current system culture. [Note: For more information, see System.Globalization.NumberFormatInfo.CurrentInfo.]

Example

This example demonstrates parsing a string to a Int64.

using System;
public class Int64ParseClass {
  public static void Main() {
    string str = "  100   ";
    Console.WriteLine("String: \"{0}\" <Int64> {1}",str,Int64.Parse(str));
  }
}
The output is

String: " 100 " <Int64> 100

See Also

System.Int64 Structure, System Namespace

Int64.Parse(System.String, System.Globalization.NumberStyles) Method

public static long Parse(string s, NumberStyles style);

Summary

Returns the specified String converted to a Int64 value.

Parameters

s
A String containing the value to convert. The string is interpreted using the style specified by style.
style
Zero or more NumberStyles values that specify the style of s. Specify multiple values for style using the bitwise OR operator. If style is a null reference, the string is interpreted using the System.Globalization.NumberStyles.Integer style.

Return Value

The Int64 value obtained from s.

Exceptions

Exception TypeCondition
ArgumentNullExceptions is a null reference.
FormatExceptions is not in the correct style.
OverflowExceptions represents a number greater than System.Int64.MaxValue or less than System.Int64.MinValue.

Description

This version of System.Int64.Parse(System.String) is equivalent to System.Int64.Parse(System.String)(s, style, null ).

The string s is parsed using the formatting information in a NumberFormatInfo initialized for the current system culture. [Note: For more information, see System.Globalization.NumberFormatInfo.CurrentInfo.]

See Also

System.Int64 Structure, System Namespace

Int64.Parse(System.String, System.IFormatProvider) Method

public static long Parse(string s, IFormatProvider provider);

Summary

Returns the specified String converted to a Int64 value.

Parameters

s
A String containing the value to convert. The string is interpreted using the System.Globalization.NumberStyles.Integer style.
provider
A IFormatProvider that supplies a NumberFormatInfo containing culture-specific formatting information about s.

Return Value

The Int64 value obtained from s.

Exceptions

Exception TypeCondition
ArgumentNullExceptions is a null reference.
FormatExceptions is not in the correct style.
OverflowExceptions represents a number greater than System.Int64.MaxValue or less than System.Int64.MinValue.

Description

This version of System.Int64.Parse(System.String) is equivalent to System.Int64.Parse(System.String) (s, System.Globalization.NumberStyles.Integer, provider).

The string s is parsed using the culture-specific formatting information from the NumberFormatInfo instance supplied by provider. If provider is null or a NumberFormatInfo cannot be obtained from provider, the formatting information for the current system culture is used.

See Also

System.Int64 Structure, System Namespace

Int64.Parse(System.String, System.Globalization.NumberStyles, System.IFormatProvider) Method

public static long Parse(string s, NumberStyles style, IFormatProvider provider);

Summary

Returns the specified String converted to a Int64 value.

Parameters

s
A String containing the value to convert. The string is interpreted using the style specified by style.
style
Zero or more NumberStyles values that specify the style of s. Specify multiple values for style using the bitwise OR operator. If style is a null reference, the string is interpreted using the System.Globalization.NumberStyles.Integer style.
provider
A IFormatProvider that supplies a NumberFormatInfo containing culture-specific formatting information about s.

Return Value

The Int64 value obtained from s.

Exceptions

Exception TypeCondition
ArgumentNullExceptions is a null reference.
FormatExceptions is not in the correct style.
OverflowExceptions represents a number greater than System.Int64.MaxValue or less than System.Int64.MinValue.

Description

The string s is parsed using the culture-specific formatting information from the NumberFormatInfo instance supplied by provider. If provider is null or a NumberFormatInfo cannot be obtained from provider, the formatting information for the current system culture is used.

See Also

System.Int64 Structure, System Namespace

Int64.ToString(System.IFormatProvider) Method

public string ToString(IFormatProvider provider);

Summary

Returns a String representation of the value of the current instance.

Parameters

provider
A IFormatProvider that supplies a NumberFormatInfo containing culture-specific formatting information.

Return Value

A String representation of the current instance formatted using the general format specifier, ("G"). The string takes into account the formatting information in the NumberFormatInfo instance supplied by provider .

Description

This version of System.Int64.ToString is equivalent to System.Int64.ToString("G", provider).

If provider is null or a NumberFormatInfo cannot be obtained from provider, the formatting information for the current system culture is used.

See Also

System.Int64 Structure, System Namespace

Int64.ToString(System.String, System.IFormatProvider) Method

public string ToString(string format, IFormatProvider provider);

Summary

Returns a String representation of the value of the current instance.

Parameters

format
A String containing a character that specifies the format of the returned string.
provider
A IFormatProvider that supplies a NumberFormatInfo instance containing culture-specific formatting information.

Return Value

A String representation of the current instance formatted as specified by format. The string takes into account the formatting information in the NumberFormatInfo instance supplied by provider.

Exceptions

Exception TypeCondition
FormatExceptionformat is invalid.

Description

If provider is null or a NumberFormatInfo cannot be obtained from provider, the formatting information for the current system culture is used.

If format is a null reference, the general format specifier "G" is used.

[Note: For a detailed description of formatting, see the IFormattable interface.

This method is implemented to support the IFormattable interface.

]

The following table lists the characters that are valid for the Int64 type.

Format CharactersDescription
"C", "c"Currency format.
"D", "d"Decimal format.
"E", "e"Exponential notation format.
"F", "f"Fixed-point format.
"G", "g"General format.
"N", "n"Number format.
"P", "p"Percent format.
"X", "x"Hexadecimal format.

See Also

System.Int64 Structure, System Namespace

Int64.ToString() Method

public override string ToString();

Summary

Returns a String representation of the value of the current instance.

Return Value

A String representation of the current instance formatted using the general format specifier ("G"). The string takes into account the current system culture.

Description

This version of System.Int64.ToString is equivalent to System.Int64.ToString(null , null ).

[Note: This method overrides System.Object.ToString.]

See Also

System.Int64 Structure, System Namespace

Int64.ToString(System.String) Method

public string ToString(string format);

Summary

Returns a String representation of the value of the current instance.

Parameters

format
A String that specifies the format of the returned string. [Note: For a list of valid values, see System.Int64.ToString(String, IFormatProvider).]

Return Value

A String representation of the current instance formatted as specified by format. The string takes into account the current system culture.

Exceptions

Exception TypeCondition
FormatExceptionformat is invalid.

Description

This method is equivalent to System.Int64.ToString (format, null ).

If format is a null reference, the general format specifier "G" is used.

Example

This example demonstrates converting a Int64 to a string.

using System;
public class Int64ToStringExample {
   public static void Main() {
      Int64 i = 64;
      Console.WriteLine(i);
      String[] formats = {"c", "d", "e", "f", "g", "n", "p", "x" };
      foreach(String str in formats)
         Console.WriteLine("{0}: {1}", str, i.ToString(str));
   }
}
The output is

64

c: $64.00

d: 64

e: 6.400000e+001

f: 64.00

g: 64

n: 64.00

p: 6,400.00 %

x: 40

See Also

System.Int64 Structure, System Namespace

Int64.MaxValue Field

public const long MaxValue = 9223372036854775807;

Summary

Contains the maximum value for the Int64 type.

Description

The value of this constant is 9,223,372,036,854,775,807 (hexadecimal 0X7FFFFFFFFFFFFFFF).

See Also

System.Int64 Structure, System Namespace

Int64.MinValue Field

public const long MinValue = -9223372036854775808;

Summary

Contains the minimum value for the Int64 type.

Description

The value of this constant is -9,223,372,036,854,775,808 (hexadecimal 0X8000000000000000).

See Also

System.Int64 Structure, System Namespace