C# 클래스 Grib.Api.Interop.SizeT

SizeT is a variable-size, platform-dependent unsigned integer. It can store the maximum size of a theoretically possible object of any type (including array). Implicitly convertable to UInt.

 

Example:

  SizeT size = 1;

  int[] myArray = new int[size];

  size = (SizeT) getSomeInt();

  Int64 big = (Int64) size;

파일 보기 프로젝트 열기: 0x1mason/GribApi.NET

공개 프로퍼티들

프로퍼티 타입 설명
Value System.UIntPtr

공개 메소드들

메소드 설명
Equals ( object obj ) : bool

Determines whether the specified System.Object, is equal to this instance.

GetHashCode ( ) : int

Returns a hash code for this instance.

operator ( ) : bool

Implements the operator ==.

비공개 메소드들

메소드 설명
SizeT ( UIntPtr val ) : System

Initializes a new instance of the SizeT struct.

SizeT ( int val ) : System

Initializes a new instance of the SizeT struct.

SizeT ( uint val ) : System

Initializes a new instance of the SizeT struct.

메소드 상세

Equals() 공개 메소드

Determines whether the specified System.Object, is equal to this instance.
public Equals ( object obj ) : bool
obj object The to compare with this instance.
리턴 bool

GetHashCode() 공개 메소드

Returns a hash code for this instance.
public GetHashCode ( ) : int
리턴 int

operator() 공개 정적인 메소드

Implements the operator ==.
public static operator ( ) : bool
리턴 bool

프로퍼티 상세

Value 공개적으로 프로퍼티

The value.
public UIntPtr,System Value
리턴 System.UIntPtr