Menu: Difference between revisions

70 bytes added ,  8 years ago
m
m (→‎{{header|REXX}}: changed/added comments and whitespace, changed indentations, added a note within the output to signify what the user entered.)
Line 416:
=={{header|C sharp}}==
<lang csharp>
using System;
using System.Collection.Generic;
 
public class Menu
{
static void Main(string[] args)
{
Line 441 ⟶ 446:
return items[i];
}
}
</lang>
 
Anonymous user