Class StringExtensions
Adds useful methods to the string object
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:EvilDICOM.Core.Extensions
Assembly:EvilDICOM.dll
Syntax
public static class StringExtensions
Methods
View SourceToUpperUnderscore(String)
Changes a camel case string to uppercase with underscore between the words
Declaration
public static string ToUpperUnderscore(this string camelCase)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | camelCase | the camel case string |
Returns
| Type | Description |
|---|---|
| System.String | the uppercase with understore separator string |