Let's say I have a method such as
[OperationContract(IsOneWay = true)]
void UpdateIndex(IndexElement[] indexElements);
in an interface.
When I implement
void UpdateIndex(IndexElement[] indexElements);
in a class file, do I have to repaste the method attribute or will the compiler know from the definition in the interface?