Class Extension Method

Source: Internet
Author: User

/// <Summary>
/// 1. Add the extension method step 1. Add a static class with the class name
/// The static class should be in the namespace where the extension method will be used in the future. Even if the namespace is different, the namespace must be imported when used. Otherwise, the namespace cannot be used.
/// </Summary>
Public static class methodext
{
// 2. Add a static method to the static class
// The first parameter of the static method indicates the type of the extension method to be added.
// The first modifier This is required. The OBJ here indicates the object that will call this method in the future.
Public static void sayhello (this person OBJ)
{
Console. writeline ("Hello ^ _~ "+ Obj. Name );
}
}

Class Extension Method

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.