2009-06-05から1日間の記事一覧

C#の問題

C#の問題 2題問題 その1 : 下記の実行結果は? string s1 = null; string s2 = null; string s = s1 + s2; Console.WriteLine(s.Length);選択肢 0と出力 3行目でエラー 4行目でエラー その他 問題 その2 : 下記の実行結果は? class Program { static obje…