| Name | Description |
| CheckSSN | Overloaded. Checks the SSN. |
| CommentScript | Comments the script. |
| CompareIgnoreNulls | Compares two strings and returns true if they are the same. For the comparison, nulls and empty strings are treated as equal and leading and trailing spaces are ignored. |
| CreateSevenZipSFX | Creates the seven zip selef extract exe. |
| CutScript | Overloaded. Cuts the script |
| DateFromStringWithMaxDefault | String to DateTime conversion. |
| DateToStringWithMaxDefault | Overloaded. DateTime to String conversion. |
| DumpStack | Dumps the current thread stack to the Console. |
| EncodeBase64URLSafeString | Encodes binary data using a URL-safe variation of the base64 algorithm but does not chunk the output. The url-safe variation emits - and _ instead of + and / characters. |
| Encrypt3String | Encrypts the string. |
| Encrypt3StringEx | Encrypts the string ex. |
| EqualArrayComparison | Compares 2 arrays and determines if equal. |
| FileCompare | Compares two files by matching content and returns true if they are identical; otherwise returns false. |
| FormatDate | Overloaded. Returns a formatted date string |
| FormatEIN | Formats EIN as ##-####### |
| FormatFileSize | Returns a formatted file size |
| FormatPhone | Overloaded. Takes in a phone number as stored in the database and returns the string to be displayed to the user. |
| FormatSSN | Formats SSN as ###-##-#### |
| GenerateTicketNumber | Generates new ticket number which can be used for error reporting. |
| GetDeterministicGuid | Gets the deterministic GUID. |
| GetNameParts | Gets the name parts. |
| GetNewId | Generates new integer id. |
| GetPhoneParts | Splits phone in parts and returns those parts. |
| GetProductLibRootPath | Gets the product library root path. |
| GetStackTrace | Returns the stack trace of the specified exception and all the inner exceptions recursively. |
| IsFileNameSafe | Checks if the file name is safe for the system and does not point to unauthorized locations |
| IsGuid | Determines whether the specified GUID string is GUID. |
| IsMDBFile | If file is MSAccess database |
| IsProductLibPath | Determines whether [is product library path] [the specified virtual path]. |
| IsXMLFile | Determines whether [is XML file] [the specified file name]. |
| IsZipFile | If file is PKZip Archive |
| LeftStr | Lefts the string. Trims string to specified lenght |
| ListToXmlString | Lists to XML string. |
| MakeFileNameSafe | Makes the file name safe. |
| MaskSSN | Returns masked SSN |
| NormalizeEIN | Normalizes the EIN. |
| NormalizeIdentifier | Utility function that removes all non-alphanumeric characters from a string and returns just the numbers and letters, permits underscore, and prepends with underscore if the identifier starts with a number. This is used for converting text valid XML tags, for example. |
| NormalizeSSN | Overloaded. Checks that SSN has the right format. |
| NormalizeXmlIdentifier | Utility function that removes all non-alphanumeric and '.', ':', '-', '_' characters from a string and returns just the numbers, letters and this spec characters, Prepends with underscore if the identifier starts with a number or '.' or'-'. This is used for converting text valid XML tags and attributes. |
| ReplaceNonAlphaNum | Replaces all non alpha-num chars from string with new string. |
| Retry<T> | Run and rerun a func up to retryCount times with a msdelay delay between each try |
| StripNonAlphaNum | Deletes all non alpha-num chars from string. |
| StripNonAlphaNumWhitespace | Deletes all non alpha-num-whitespace chars from string. |
| StripNonNumerics | Overloaded. Utility function that removes all non-numeric characters from a string and returns just the numbers. This is used when storing SSN's, ZIP Codes, etc. |
| StripNonNumericWithinLength | Utility function that removes all non numeric from input string and returns result. Also check length of result and if it bigger than withingLength, returns position of last character from result in input string. Used for check max length of SSN\ZIP\PHONE |
| Trim | Trim string |
| WaitFile | Pauses execution until a file is available for the given access. An exception is thrown if the given time limit is exceeded without the file becoming available. |