The proper way to convert a string to all lowercase is:

Options
- String = string.ToLower(string);
- ToLower(string);
- string.ToLower();
- string.ToLower(string);


CORRECT ANSWER : string.ToLower();

Discussion Board
Capital "S"

option C: String.ToLower();

yogesh 07-6-2017 11:14 AM

Write your comments

 
   
 
 

Enter the code shown above:
 
(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement