A static member belongs to the class itself instead of a specific instance.

public static int playerCount;
Player.playerCount++;

Static method:

public static int Add(int a, int b)
{
    return a + b;
}