About

A method is a function associated with a named type (ie a variable). Generally an object created from a class.

Static

Static methods are called without instantiating their class and cannot be called through a class instance.

Static methods are often used to create utility functions (not related to an object, that can be called globally) for an application.