What am I doing wrong? As a beginner I google this and everywhere the answer is the same. When I click on "fixes" inside the Microsoft Visual Studio they don't work at all.
My code below:
using System;
namespace Test.Net_Core
{
class Program
{
static void Main(string[] args)
{
List<string> fruits = new List<string>();
fruits.Add("apple");
Console.WriteLine(fruits);
}
}
}