Class StringExtensions
String utilities and extension methods.
Inheritance
System.Object
StringExtensions
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Elements
Assembly: Hypar.Elements.dll
Syntax
public static class StringExtensions
Methods
NumberToString(Int32)
Create a string A, B, C, ... AA, AB ... from an int value
Declaration
public static string NumberToString(int value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | value | The value to turn into a character string |
Returns
Type | Description |
---|---|
System.String | A string of Upper-case characters e.g. 1=A, 2=B, 27=AA |