Reconstruction guide, zhangjin restructuring industrial value

Source: Internet
Author: User

Reconstruction guide, zhangjin restructuring industrial value
When a method has more than three parameters, you can consider encapsulating the parameters into an object. Encapsulating a parameter into an object improves the readability of the code, and the parameter object can be called by multiple methods. if you add a delete parameter in the future, the method itself does not need to be modified, you only need to modify the parameter object. Pre-reconstruction code

Public class Registration {public void Create (decimal amount, Student student, IEnumerable <Course> courses, decimal credits) {// do work }}

 

Code after reconstruction
Public class RegistrationContext {public decimal Amount {get; set;} public Student {get; set;} public IEnumerable <Course> Courses {get; set;} public decimal Credits {get; set ;}} public class Registration {public void Create (RegistrationContext registrationContext) {// do work }}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.