-4
using System;

namespace CardV5
{
    class Tee
    {
        private static int numOne = 4;
        private static int numTwo = 2;
        private static int numThree = 22;
        public int Value { get; set; }
        private int[, ,] m_tData = new int[numOne, numTwo, numThree];
        public int TeeData(int IndexOne, int IndexTwo, int IndexThree) 
        { 
            get{return m_tData[IndexOne, IndexTwo, IndexThree];}
            set{m_tData[IndexOne, IndexTwo, IndexThree] = Value;}
        }
    }
}

get と set は赤い線で囲まれています。エラーフラグ:

ステートメントとして使用できるのは、割り当て、呼び出し、インクリメント、デクリメント、待機、および新しいオブジェクト式のみです。

これを回避する方法は?

4

3 に答える 3