Int64

Overview

8 byte signed integer type.

Location


 

constructor  protected    (declared in ValueType)

 

constructor

 

Int64()

 

init()

 

Int64()

 

Sub New()

CompareTo (Int64): Int32

Compares this value to another value; returns 0 if equal, -1 if less, 1 if more.

 

method CompareTo(a: Int64): Int32

 

Int32 CompareTo(Int64 a)

 

func CompareTo(_ a: Int64) -> Int32

 

Int32 CompareTo(Int64 a)

 

Function CompareTo(a As Int64) As Int32

Parameters:

  • a:

CompareTo (Object): Int32

Compares this value to another value; returns 0 if equal, -1 if less, 1 if more.

 

method CompareTo(a: Object): Int32

 

Int32 CompareTo(Object a)

 

func CompareTo(_ a: Object) -> Int32

 

Int32 CompareTo(Object a)

 

Function CompareTo(a As Object) As Int32

Parameters:

  • a:

Equals (Object): Boolean  virtual    (declared in Object)

Default constructor.

 

method Equals(aOther: Object): Boolean

 

Boolean Equals(Object aOther)

 

func Equals(_ aOther: Object) -> Boolean

 

Boolean Equals(Object aOther)

 

Function Equals(aOther As Object) As Boolean

Parameters:

  • aOther: the reference to compare this with.

Equals (Object): Boolean  override virtual

Returns true if the target object matches this one, by default compares the reference.

 

method Equals(obj: Object): Boolean

 

Boolean Equals(Object obj)

 

func Equals(_ obj: Object) -> Boolean

 

Boolean Equals(Object obj)

 

Function Equals(obj As Object) As Boolean

Parameters:

  • obj:

Equals (Int64): Boolean

Returns true if the target object matches this one, by default compares the reference.

 

method Equals(other: Int64): Boolean

 

Boolean Equals(Int64 other)

 

func Equals(_ other: Int64) -> Boolean

 

Boolean Equals(Int64 other)

 

Function Equals(other As Int64) As Boolean

Parameters:

  • other:

Finalize  protected virtual    (declared in Object)

 

method Finalize

 

void Finalize()

 

func Finalize()

 

void Finalize()

 

Sub Finalize()

GetHashCode  override virtual

Returns a hashcode for this object. Overriden implementations should make sure that the number returned here is constant given the same object.

 

method GetHashCode: Int32

 

Int32 GetHashCode()

 

func GetHashCode() -> Int32

 

Int32 GetHashCode()

 

Function GetHashCode() As Int32

GetType    (declared in Object)

Returns the actual type of this class

 

method GetType: Type

 

Type GetType()

 

func GetType() -> Type

 

Type GetType()

 

Function GetType() As Type

MaxValue

Returns the maximum value this type can hold.

 

const MaxValue: Int64 = 9223372036854775807;

 

const Int64 MaxValue = 9223372036854775807

 

static let MaxValue: Int64 = 9223372036854775807

 

static final Int64 MaxValue = 9223372036854775807

 

Dim MaxValue As Int64 = 9223372036854775807

MinValue

Returns the minimum value this type can hold.

 

const MinValue: Int64 = -9223372036854775808;

 

const Int64 MinValue = -9223372036854775808

 

static let MinValue: Int64 = -9223372036854775808

 

static final Int64 MinValue = -9223372036854775808

 

Dim MinValue As Int64 = -9223372036854775808

Parse

Parse a string to an int64.

 

class method Parse(s: String): Int64

 

static Int64 Parse(String s)

 

static func Parse(_ s: String) -> Int64

 

static Int64 Parse(String s)

 

Shared Function Parse(s As String) As Int64

Parameters:

  • s:

ReferenceEquals    (declared in Object)

Compares two references for equivalence (even if they have an equals operator)

 

class method ReferenceEquals(a: Object; b: Object): Boolean

 

static Boolean ReferenceEquals(Object a, Object b)

 

static func ReferenceEquals(_ a: Object, _ b: Object) -> Boolean

 

static Boolean ReferenceEquals(Object a, Object b)

 

Shared Function ReferenceEquals(a As Object, b As Object) As Boolean

Parameters:

  • a: left value
  • b: right value

ToString  override virtual

Gets the string representation of this method.

 

method ToString: String

 

String ToString()

 

func ToString() -> String

 

String ToString()

 

Function ToString() As String

TryParse

Parse a string to an int64. Returns true if succesful.

 

class method TryParse(s: String; out Value: Int64): Boolean

 

static Boolean TryParse(String s, out Int64 Value)

 

static func TryParse(_ s: String, _ Value: Int64) -> Boolean

 

static Boolean TryParse(String s, __out Int64 Value)

 

Shared Function TryParse(s As String, <OutAttribute> ByRef Value As Int64) As Boolean

Parameters:

  • s:
  • Value:

 

MaxValue

Returns the maximum value this type can hold.

 

const MaxValue: Int64 = 9223372036854775807;

 

const Int64 MaxValue = 9223372036854775807

 

static let MaxValue: Int64 = 9223372036854775807

 

static final Int64 MaxValue = 9223372036854775807

 

Dim MaxValue As Int64 = 9223372036854775807

MinValue

Returns the minimum value this type can hold.

 

const MinValue: Int64 = -9223372036854775808;

 

const Int64 MinValue = -9223372036854775808

 

static let MinValue: Int64 = -9223372036854775808

 

static final Int64 MinValue = -9223372036854775808

 

Dim MinValue As Int64 = -9223372036854775808

 

Parse

Parse a string to an int64.

 

class method Parse(s: String): Int64

 

static Int64 Parse(String s)

 

static func Parse(_ s: String) -> Int64

 

static Int64 Parse(String s)

 

Shared Function Parse(s As String) As Int64

Parameters:

  • s:

ReferenceEquals    (declared in Object)

Compares two references for equivalence (even if they have an equals operator)

 

class method ReferenceEquals(a: Object; b: Object): Boolean

 

static Boolean ReferenceEquals(Object a, Object b)

 

static func ReferenceEquals(_ a: Object, _ b: Object) -> Boolean

 

static Boolean ReferenceEquals(Object a, Object b)

 

Shared Function ReferenceEquals(a As Object, b As Object) As Boolean

Parameters:

  • a: left value
  • b: right value

TryParse

Parse a string to an int64. Returns true if succesful.

 

class method TryParse(s: String; out Value: Int64): Boolean

 

static Boolean TryParse(String s, out Int64 Value)

 

static func TryParse(_ s: String, _ Value: Int64) -> Boolean

 

static Boolean TryParse(String s, __out Int64 Value)

 

Shared Function TryParse(s As String, <OutAttribute> ByRef Value As Int64) As Boolean

Parameters:

  • s:
  • Value:

 

constructor  protected    (declared in ValueType)

 

constructor

 

Int64()

 

init()

 

Int64()

 

Sub New()

CompareTo (Int64): Int32

Compares this value to another value; returns 0 if equal, -1 if less, 1 if more.

 

method CompareTo(a: Int64): Int32

 

Int32 CompareTo(Int64 a)

 

func CompareTo(_ a: Int64) -> Int32

 

Int32 CompareTo(Int64 a)

 

Function CompareTo(a As Int64) As Int32

Parameters:

  • a:

CompareTo (Object): Int32

Compares this value to another value; returns 0 if equal, -1 if less, 1 if more.

 

method CompareTo(a: Object): Int32

 

Int32 CompareTo(Object a)

 

func CompareTo(_ a: Object) -> Int32

 

Int32 CompareTo(Object a)

 

Function CompareTo(a As Object) As Int32

Parameters:

  • a:

Equals (Object): Boolean  virtual    (declared in Object)

Default constructor.

 

method Equals(aOther: Object): Boolean

 

Boolean Equals(Object aOther)

 

func Equals(_ aOther: Object) -> Boolean

 

Boolean Equals(Object aOther)

 

Function Equals(aOther As Object) As Boolean

Parameters:

  • aOther: the reference to compare this with.

Equals (Object): Boolean  override virtual

Returns true if the target object matches this one, by default compares the reference.

 

method Equals(obj: Object): Boolean

 

Boolean Equals(Object obj)

 

func Equals(_ obj: Object) -> Boolean

 

Boolean Equals(Object obj)

 

Function Equals(obj As Object) As Boolean

Parameters:

  • obj:

Equals (Int64): Boolean

Returns true if the target object matches this one, by default compares the reference.

 

method Equals(other: Int64): Boolean

 

Boolean Equals(Int64 other)

 

func Equals(_ other: Int64) -> Boolean

 

Boolean Equals(Int64 other)

 

Function Equals(other As Int64) As Boolean

Parameters:

  • other:

Finalize  protected virtual    (declared in Object)

 

method Finalize

 

void Finalize()

 

func Finalize()

 

void Finalize()

 

Sub Finalize()

GetHashCode  override virtual

Returns a hashcode for this object. Overriden implementations should make sure that the number returned here is constant given the same object.

 

method GetHashCode: Int32

 

Int32 GetHashCode()

 

func GetHashCode() -> Int32

 

Int32 GetHashCode()

 

Function GetHashCode() As Int32

GetType    (declared in Object)

Returns the actual type of this class

 

method GetType: Type

 

Type GetType()

 

func GetType() -> Type

 

Type GetType()

 

Function GetType() As Type

ToString  override virtual

Gets the string representation of this method.

 

method ToString: String

 

String ToString()

 

func ToString() -> String

 

String ToString()

 

Function ToString() As String