Quotes help make search much faster. Example: "Practice Makes Perfect"

Tuesday, September 3, 2019

Codecademy Using Out 5/7


// Sample Solution
using System;

namespace UsingOut
{
  class Program
  {
    static void Main(string[] args)
    {
      string message = "GARRR";
      Console.WriteLine(Whisper(message, out bool marker));
    }   
   
    static string Whisper(string message, out bool flag)
    {
      flag = true;
      return message.ToLower();
    }
}
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts