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

C#方法输出参数

时间:2018-08-09 17:36:08      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:cat   取值   定义   tor   变量定义   class   public   输出参数   int   

using System;

namespace CalculatorApplication
{
class NumberManipulator
{
public void getValues(out int x, out int y)
{
//Console.WriteLine("请输入第一个值: ");
//x = Convert.ToInt32(Console.ReadLine());
//Console.WriteLine("请输入第二个值: ");
//y = Convert.ToInt32(Console.ReadLine());
x = 150;
y = 123;

}

static void Main(string[] args)
{
NumberManipulator n = new NumberManipulator();
/* 局部变量定义 */
int a, b;

/* 调用函数来获取值 */
n.getValues(out a, out b);

Console.WriteLine("在方法调用之后,a 的值: {0}", a);
Console.WriteLine("在方法调用之后,b 的值: {0}", b);
Console.ReadLine();
}
}
}

C#方法输出参数

标签:cat   取值   定义   tor   变量定义   class   public   输出参数   int   

原文地址:https://www.cnblogs.com/haoweiwei/p/9449445.html

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