HelperFunctions Class
Friend Class HelperFunctions
This language is not supported or no code example is available.
internal static class HelperFunctions
This language is not supported or no code example is available.
type internal HelperFunctions = class end
This language is not supported or no code example is available.
private ref class HelperFunctions
This language is not supported or no code example is available.
| Name | Description | |
|---|---|---|
|
AsPrettyString(this MainClass) | An example of an extension method. Returns a human readable string representing an instance of MainClass. |
|
Equals(object, object) | Determines whether the specified object instances are considered equal. (inherited from object). |
|
Equals(object) | Determines whether the specified object is equal to the current object. (inherited from object). |
|
~Object() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (inherited from object). |
|
FindWindowEx(IntPtr, IntPtr, string, string) | An example of an external function. Retrieves a handle to a window whose class name and window name match the specified strings. |
|
GetCurrentDate() | Gets the current date and time. |
|
GetHashCode() | Serves as the default hash function. (inherited from object). |
|
GetType() | Gets the Type of the current instance. (inherited from object). |
|
MemberwiseClone() | Creates a shallow copy of the current object. (inherited from object). |
|
ReferenceEquals(object, object) | Determines whether the specified object instances are the same instance. (inherited from object). |
|
RegisterClipboardFormat(string) | An example of an external function. Registers a new clipboard format. This format can then be used as a valid clipboard format. |
|
ToString() | Returns a string that represents the current object. (inherited from object). |
In VB, you can use included methods directly without specifying HelperFunctions name.
SampleClassLibrary.Utils.HelperFunctions