码迷,mamicode.com
首页 > Windows程序 > 详细

C# 类的解构

时间:2019-09-13 15:24:00      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:write   div   int   out   struct   static   person   mes   ace   

C#对类的解构,必须在该类内实现Deconstruct方法,并且返回类型为void ,并用out参数返回各个部分。

using System;
using System.Text;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            (int c, int d) = new Person();
            Console.WriteLine(c);
            Console.WriteLine(d);
        }
    }

    class Person
    {
        public void Deconstruct(out int a,out int b)
        {
            a = 122;
            b = 1;
        }
    }
}

 

C# 类的解构

标签:write   div   int   out   struct   static   person   mes   ace   

原文地址:https://www.cnblogs.com/mlh1421/p/11516872.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!