String case: Difference between revisions

Remove double entry for C#
(Add Seed7 example)
(Remove double entry for C#)
Line 73:
System.Console.WriteLine(array.ToUpper());
System.Console.WriteLine(array.ToLower());
 
==[[C#]]==
[[Category:C_sharp]]
 
string array = "alphaBETA";
System.Console.WriteLine(array.ToUpper());
System.Console.WriteLine(array.ToLower());
 
 
==[[Forth]]==