Class StringExtensions
String Extensions.
Inherited Members
Namespace: Microsoft.MixedReality.Toolkit
Assembly: cs.temp.dll.dll
Syntax
public static class StringExtensions
  Methods
DecodeFrom64(String)
Decodes string from base 64 ASCII.
Declaration
public static string DecodeFrom64(this string encodedData)
  Parameters
| Type | Name | Description | 
|---|---|---|
| String | encodedData | String to decode.  | 
      
Returns
| Type | Description | 
|---|---|
| String | Decoded string.  | 
      
EncodeTo64(String)
Encodes the string to base 64 ASCII.
Declaration
public static string EncodeTo64(this string toEncode)
  Parameters
| Type | Name | Description | 
|---|---|---|
| String | toEncode | String to encode.  | 
      
Returns
| Type | Description | 
|---|---|
| String | Encoded string.  | 
      
ToProperCase(String)
Capitalize the first character and add a space before each capitalized letter (except the first character).
Declaration
public static string ToProperCase(this string value)
  Parameters
| Type | Name | Description | 
|---|---|---|
| String | value | 
Returns
| Type | Description | 
|---|---|
| String |