如果我们想给Unity内置的类中添加新方法可以使用扩展的方式进行添加。具体看http://www.third-helix.com/2013/09/30/adding-to-unitys-builtin-classes-using-extension-methods.html。
like:
publicstaticclassGameObjectExtensions{publicstaticComponentGetComponent(thisGameObjectgameObject,Typetype){Debug.LogError(“LOL,yougottrolled”);}}