Search results for query: *

  • Users: rei
  • Content: Threads
  • Order by date
  1. rei

    Code not working.

    using System; namespace C_Sharp_Practice { class MainClass { public static void Main (string[] args) { string[] FavoriteFoods = new string[5]; FavoriteFoods[0] = "Apples"; FavoriteFoods[1] = "Carrots"; FavoriteFoods[2] = "Steak"; FavoriteFoods[3] = "Pizza"...
  2. rei

    Can someone please explain in detail what the lines in this code does?

    I am new to C# and this code was on one of the tutorials but it didn't give much of an explanation of what each line does. The code: using System; namespace RectangleApplication { class Rectangle { double length; double width; public void...
Back
Top Bottom