• C# params object[] args 可以传多个参数,可以不限制类型(转)


    C# params object[] args 可以传多个参数,可以不限制类型

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace ConsoleApplication2
    {
        class Program
        {
            static void Main(string[] args)
            {
                print("Information", new Field("Name", "mengyu"), new Field("aa", "bb"));
            }

            static void print(string a, params object[] args)
            {
                Console.WriteLine(a);
                foreach (object obj in args)
                {
                    Field field = (Field)obj;
                    Console.WriteLine(field.Name + " = " + field.Value);
                }
            }

            class Field
            {
                private string name;
                private string value;

                public Field(string name, string value)
                {
                    this.name = name;
                    this.value = value;
                }

                public string Name
                {
                    get
                    {
                        return name;
                    }
                    set
                    {
                        name = value;
                    }
                }

                public string Value
                {
                    get
                    {
                        return value;
                    }
                    set
                    {
                        this.value = value;
                    }
                }
            }

        }
    }

  • 相关阅读:
    javascript中Function、ArrowFunction和GeneratorFunction介绍
    javascript中Function、ArrowFunction和GeneratorFunction介绍
    26个ASP.NET常用性能优化方法
    xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!
    xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!
    xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!
    什么是去中心化市场(OpenBazaar)
    去中心化共识
    侧链/楔入式侧链
    零知识证明(Zero Knowledge Proof,ZKP)
  • 原文地址:https://www.cnblogs.com/coolsundy/p/3779364.html
Copyright © 2020-2023  润新知