string class : ToLower() method

Description

Gets a new instance of the string that uppercase in the invoker string converts to lowercase.

Syntax

stringInstance.ToLower()

Arguments

None

Return value

ClassDescription
stringA new instance of the string that uppercase in the invoker string converts to lowercase.

Sample code

//anyString is a instance of string type.

string lowerString = anyString.ToLower();

Notes

It's a wrapper of the System.String.ToLower().

Links for reference

Copyright © Rice All rights reserved.