C# 传值输出引用数组具名可选参数扩展方法

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 传值输出引用数组具名可选参数扩展方法_学习
{
    
    class Program
    {
        static void Main(string[] args)
        {
            //值参数
            Student stu = new Student();
            int y = 100;
            stu.AddOne(y);
            Console.WriteLine(y);

            Console.Read();
        }
    }


    class Student
    {
        public void AddOne(int x)  //传值参数 传值类型 作为副本 原本的不会收到影响
        {
            x = x + 1;
            Console.WriteLine(x);
        }
    }
}
//值类型
//值参数类型

你可能感兴趣的:(C#)