以下C#程序的输出结果是( )。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了以下C#程序的输出结果是( )。相关的知识,希望对你有一定的参考价值。

以下程序的输出结果是( )。

using System;

namespace HoverTreeTikuConsole
{
class Program
{
static void Main(string[] args)
{
MyStruct s1 = new MyStruct(1, 2);
s1.x = 2;
s1.Sum();
Console.ReadLine();
}
}

/// <summary>
/// http://hovertree.com/h/bjaf/g8bsql7s.htm
/// </summary>
struct MyStruct
{
public int x;
public int y;
public MyStruct(int i, int j)
{
x = i;
y = j;
}
public void Sum()
{
int sum = x + y;
Console.WriteLine("the sum is {0}", sum);
}
}

答案:http://hovertree.com/tiku/bjaf/uawcvwwa.htm

http://hovertree.com/tiku/

http://sosoft.cnblogs.com/

以上是关于以下C#程序的输出结果是( )。的主要内容,如果未能解决你的问题,请参考以下文章

C#常用代码片段备忘

C#面试题0_编码题_下列代码输出的是什么_Java instanceof用法

如何为 XSLT 代码片段配置 CruiseControl 的 C# 版本?

C#程序员经常用到的10个实用代码片段

(转) Java中的负数及基本类型的转型详解

Sleep() 方法后的代码片段没有被执行