Uppercase "code".
| Test | Status | Details |
|---|
Ready — edit the code above and click Run or Submit.
using System;
class Program
{
static void Main()
{
string s = "code";
Console.WriteLine(s.ToUpper());
}
}
Try solving on your own first, then reveal the official answer.
ToUpperInvariant in production.