http://msdn.microsoft.com/ko-kr/library/1yk8s7sk.aspx
Inherits basetypenames
Inherits statement must be the first non-blank, non-comment line in a class or interface definition.' data-guid="309d188a9a4a42bbbb8d6b3722504d79">
Inherits only in a class or interface.' data-guid="5032581313ceaa8c0196c42740547c08">
Class Inheritance. If a class uses the Inherits statement, you can specify only one base class.' data-guid="9956bf0cddd8079fd76ef46cbe497db8">
Interface Inheritance. If an interface uses the Inherits statement, you can specify one or more base interfaces.' data-guid="5c4f3e3ddff99cdc5f40e85b475b5443">
ArgumentException class, which inherits from the SystemException class.' data-guid="bceaed8c4b8f3ebf5dfe543727ced301">
ICollection interface, which inherits from the IEnumerable interface.' data-guid="e903cdbdf5b0dae90ff35f5744971d6d">
Inherits statement to show how a class named thisClass can inherit all the members of a base class named anotherClass.' data-guid="0965604f9edf57bd7388b5fb14312fb4">
Public Class thisClass Inherits anotherClass ' Add code to override, overload, or extend members ' inherited from the base class. ' Add new variable, property, procedure, and event declarations. End Class
Public Interface thisInterface Inherits IComparable, IDisposable, IFormattable ' Add new property, procedure, and event definitions. End Interface
thisInterface now includes all the definitions in the IComparable, IDisposable, and IFormattable interfaces The inherited members provide respectively for type-specific comparison of two objects, releasing allocated resources, and expressing the value of an object as a String.' data-guid="9db49d86225d44a921cdaf933e028c79">
vnote