확장 클래스 내에서 확장 메서드를 호출하는 데 'this'키워드가 필요한 이유 ASP.NET MVC ViewPage에 대한 확장 메서드를 만들었습니다. 예 : public static class ViewExtensions { public static string Method(this ViewPage page) where T : class { return "something"; } } View에서이 메서드를 호출 할 때 (에서 파생 됨 ViewPage) 키워드를 사용하여 호출 하지 않으면 " CS0103 : The name 'Method'is not exist in the current context " 오류가 발생 this합니다. this키워드가 필요한 이유는 무엇 입니까? 아니면 그것 없이도 작동하지만..