C#基础 out传值

Posted Dream&er

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#基础 out传值相关的知识,希望对你有一定的参考价值。

public void Out(out int a, out int b)
{//out相当于return返回值
//可以返回多个值
//拿过来变量名的时候,里面默认为空值
a=1;
b=2;
}


static void Main(string[] args)
{
int a = 0;
int b = 1;
Program hanshu = new Program();
hanshu.Out(out a, out b);

 

//100以内与7无关的数
//个位数是7
//十位数是7
//7的倍数

for (int i = 1; i <= 100;i++ )
{
if (i % 10 == 7 || i / 10 == 7 || i % 7 == 0)
{
//break;//跳出整个循环
continue;//跳出本次循环,继续下次循环
}
Console.Write(i+"\\t");
}
Console.ReadLine();

 

以上是关于C#基础 out传值的主要内容,如果未能解决你的问题,请参考以下文章

C# 基础 访问修饰符ref与out标志枚举等等

C#混合R语言编程之RDotNet-基础

C#基础按值和按引用传递参数

C# out Keyword

浅谈c#的三个高级参数ref out 和Params

浅谈c#的三个高级参数ref out 和Params