1.

What Is The Use Of Partial Methods?

Answer»

Partial METHODS can be used to customize generated CODE. They allow for a method name and signature to be reserved, so that generated code can call the method but the developer can decide whether to IMPLEMENT the method. Much like partial classes, partial methods ENABLE code created by a code generator and code created by a human developer to work together WITHOUT run-time costs.

Partial methods can be used to customize generated code. They allow for a method name and signature to be reserved, so that generated code can call the method but the developer can decide whether to implement the method. Much like partial classes, partial methods enable code created by a code generator and code created by a human developer to work together without run-time costs.



Discussion

No Comment Found