I have a class split across two files. One of these is generated, the other contains the non-generated stuff.
I want my class to inherit from a base class. Do I need to have both files inherit? Or will the class inherit from the base class if either partial class
In generated foo.vb:
Partial Public Class Foo Inherits BaseClass
In manually-created foo.vb:
Partial Public Class Foo
It doesn't seem to matter (according to what I see in Reflector, anyways).
Can anyone explain how this works? Does the compiler simply combine the two?