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

Wednesday, September 4, 2019

Codecademy Making Classes 2/12


// Sample Solution
///////////////////////////////////////////////////
//Forest.cs code
using System;

namespace BasicClasses
{
  class Forest{
   
  }
}
///////////////////////////////////////////////////
//Program.cs code
using System;

namespace BasicClasses
{
  class Program
  {
    static void Main(string[] args)
    {
      Forest f = new Forest();
    }
  }
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts