DotNetWikiBot Framework Documentation
This auxiliary function makes the first letter in specified string upper-case. This is often required, but strangely there is no such function in .NET Framework's String class.

Namespace: DotNetWikiBot
Assembly: DotNetWikiBot (in DotNetWikiBot.dll) Version: 0.0.0.0

Syntax

C#
public static string Capitalize(
	string str
)

Parameters

str
Type: System..::..String
String to capitalize.

Return Value

Type: String
Capitalized string.

See Also