understanding class

Hi, I’m trying to understand more in depth about class in Unity Scripting. I kind of new
to this so if I’m wrong please correct me. thank you.

//ok so from my understanding the Transform class looks like this

public class Transform : Component{

//so I know that a variable and function is local to this class. I know what is
//inherited function, but what is the difference bewteen the Inherited
//Functions and Inherited Class Functions

/does it mean that Transform class inherited from Component and Component inherited
from such and such class and so my Transform class also inherited from such and such too?
/

}

Class functions is another way to say static functions. A static function is one that doesn’t require an instance to operate.

// Static function
Application.LoadLevel();

// function
someTransform.Translate ();