Method | Description | |
---|---|---|
CreateNewInstance ( System classType ) : |
Creates an instance of a received Type.
|
|
EqualsSupport ( System source, System target ) : bool |
Determines whether two Collections instances are equals.
|
|
FormatDateTime ( System format, System date ) : string |
Gets the DateTimeFormat instance and date instance to obtain the date with the format passed
|
|
GetCharsFromString ( string sourceString, int sourceStart, int sourceEnd, char &destinationArray, int destinationStart ) : void |
Copies an array of chars obtained from a String into a specified array of chars
|
|
GetFileStream ( string FileName, bool Append ) : |
Creates an output file stream to write to the file with the specified name.
|
|
HashtableRemove ( System hashtable, System key ) : |
Removes the element with the specified key from a Hashtable instance.
|
|
Identity ( double literal ) : double |
This method returns the literal value received
|
|
Identity ( float literal ) : float |
This method returns the literal value received
|
|
Identity ( long literal ) : long |
This method returns the literal value received
|
|
PutElement ( System collection, System key, System newValue ) : |
Adds a new key-and-value pair into the hash table
|
|
ReverseStack ( System collection ) : System.Collections.IEnumerator |
Reverses the Stack Collection received.
|
|
SetSize ( System arrayList, int newSize ) : void |
Sets the size of the ArrayList. If the new size is greater than the current capacity, then new null items are added to the end of the ArrayList. If the new size is lower than the current size, then all elements after the new size are discarded
|
|
StackPush ( System stack, System element ) : |
Adds an element to the top end of a Stack instance.
|
|
ToByteArray ( object tempObjectArray ) : byte[] |
Converts a array of object-type instances to a byte-type array.
|
|
ToByteArray ( string sourceString ) : byte[] |
Converts a string to an array of bytes
|
|
ToCharArray ( byte byteArray ) : char[] |
Converts an array of bytes to an array of chars
|
|
VectorRemoveElement ( System arrayList, System element ) : System.Boolean |
Removes the first occurrence of an specific object from an ArrayList instance.
|
|
WriteStackTrace ( System throwable, System stream ) : void |
Writes the exception stack trace to the received stream
|
Method | Description | |
---|---|---|
Identity ( ulong literal ) : ulong | ||
ReadInput ( System sourceStream, sbyte &target, int start, int count ) : |
||
ToByteArray ( sbyte sbyteArray ) : byte[] | ||
ToCharArray ( sbyte sByteArray ) : char[] | ||
ToSByteArray ( byte byteArray ) : sbyte[] |
public static CreateNewInstance ( System classType ) : |
||
classType | System | The Type of the new class instance to return. |
return |
public static EqualsSupport ( System source, System target ) : bool | ||
source | System | The first Collections to compare. |
target | System | The second Collections to compare. |
return | bool |
public static FormatDateTime ( System format, System date ) : string | ||
format | System | The DateTimeFormat to obtain the time and date pattern |
date | System | The date instance used to get the date |
return | string |
public static GetCharsFromString ( string sourceString, int sourceStart, int sourceEnd, char &destinationArray, int destinationStart ) : void | ||
sourceString | string | The String to get the chars from |
sourceStart | int | Position of the String to start getting the chars |
sourceEnd | int | Position of the String to end getting the chars |
destinationArray | char | Array to return the chars |
destinationStart | int | Position of the destination array of chars to start storing the chars |
return | void |
public static GetFileStream ( string FileName, bool Append ) : |
||
FileName | string | Name of the file to write. |
Append | bool | True in order to write to the end of the file, false otherwise. |
return |
public static HashtableRemove ( System hashtable, System key ) : |
||
hashtable | System | The Hashtable instance |
key | System | The key of the element to remove |
return |
public static Identity ( double literal ) : double | ||
literal | double | The literal to return |
return | double |
public static Identity ( float literal ) : float | ||
literal | float | The literal to return |
return | float |
public static Identity ( long literal ) : long | ||
literal | long | The literal to return |
return | long |
public static PutElement ( System collection, System key, System newValue ) : |
||
collection | System | The collection to work with |
key | System | Key used to obtain the value |
newValue | System | Value asociated with the key |
return |
public static ReverseStack ( System collection ) : System.Collections.IEnumerator | ||
collection | System | The collection to reverse. |
return | System.Collections.IEnumerator |
public static SetSize ( System arrayList, int newSize ) : void | ||
arrayList | System | The ArrayList to be changed |
newSize | int | The new ArrayList size |
return | void |
public static StackPush ( System stack, System element ) : |
||
stack | System | The Stack instance |
element | System | The element to add |
return |
public static ToByteArray ( object tempObjectArray ) : byte[] | ||
tempObjectArray | object | Array to convert. |
return | byte[] |
public static ToByteArray ( string sourceString ) : byte[] | ||
sourceString | string | The string to be converted |
return | byte[] |
public static ToCharArray ( byte byteArray ) : char[] | ||
byteArray | byte | The array of bytes to convert |
return | char[] |
public static VectorRemoveElement ( System arrayList, System element ) : System.Boolean | ||
arrayList | System | The ArrayList instance |
element | System | The element to remove |
return | System.Boolean |
public static WriteStackTrace ( System throwable, System stream ) : void | ||
throwable | System | Exception to obtain information from |
stream | System | Output sream used to write to |
return | void |