What's inside a Class?
Classes contain data (Fields) and behavior (Methods).
Example
csharp class Dog { // Field public string breed;
// Method
public void Bark()
{
Console.WriteLine("Woof!");
}
}
You access members using the dot . syntax after creating an object: myDog.Bark();.