私はプログラムを実行するたびに "期待どおり"になるのはなぜですか?私は中括弧がないとは思わない。それは別のものになることができますか?C#の中括弧で値渡しと参照渡し
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
int[] anArray = new int[] {30, 40, 60, 70, 80, 90, 100, 110};
var byVal = anArray[0];
Console.WriteLine("by value: " + byVal);
ref int byRef = anArray[0];
Console.WriteLine("by reference: " + byRef);
}
}
}
表示されている正確/完全なエラーを表示できますか? – Castaglia