C#:
using System;
namespace UsingOut
{
class Program
{
static string Whisper(string phrase, out bool whisper)
{
whisper = true;
return phrase.ToLower();
}
static void Main(string[] args)
{
string statement = "AHH";
Whisper(statement, out bool marker);
Console.WriteLine(marker);
Console.WriteLine(statement);
}
}
}
Last edited by a moderator: