Returns nicely formatted string from a Pascal cased string (used for database field names, etc.).

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static string ToUserFriendlyString(
	this string value
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function ToUserFriendlyString ( 
	value As String
) As String
Visual C++
public:
[ExtensionAttribute]
static String^ ToUserFriendlyString(
	String^ value
)
F#
static member ToUserFriendlyString : 
        value : string -> string 

Parameters

value
Type: System..::..String
Value to convert

Return Value

Type: String
Formatted string

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also