Return multiple values: Difference between revisions

m
Corrected spelling error in the "C#" entry: paremeters --> parameters
(→‎{{header|Euler}}: Sybntax highlight with Mediawiki markup)
imported>Nard
m (Corrected spelling error in the "C#" entry: paremeters --> parameters)
Line 550:
 
=={{header|C sharp|C#}}==
The preferred way to return multiple values in C# is to use "out" paremetersparameters on the method. This can be in addition to the value returned by the method.
<syntaxhighlight lang="c sharp">using System;
using System.Collections.Generic;
Anonymous user