A structure declaration may declare that it implements a set of interface types through one or more Implements
clauses. All the types specified in the Implements
clause must be interfaces, and all members of the interfaces must be implemented by the structure. Declaring that a structure implements an interface in and of itself does not declare anything in the declaration space of the structure. Thus, it is perfectly legal to implement two interfaces with a method by the same name.
Implements
Implements LineTerminator,
InterfaceTypeName