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

Wednesday, September 4, 2019

Codecademy Automatic Properties 5/12


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

namespace BasicClasses
{
  class Forest
  {
    public int age;
    public string biome;
   
    public string Name { get; set; }
    public int Trees { get; set; }
   
    public string Biome
    {
      get { return biome; }
      set
      {
        if (value == "Tropical" ||
            value == "Temperate" ||
            value == "Boreal")
        {
          biome = value;
        }
        else
        {
          biome = "Unknown";
        }
      }
    }
  }
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts