Contract also known as interface, define a common set of members that all classes that implement the contract must provide.
Ex:
' VB
Class ExampleClass
Implements IDisposable
End Class
// C#
class ExampleClass: IDisposable
{
}
Subscribe to:
Post Comments (Atom)

0 comments:
Post a Comment