C Sharp (C#) - Classes and Objects
What will be the output of this C# code?
class Fruit {
public string Name = "Apple";
}
Fruit f = new Fruit();
Console.WriteLine(f.Name);