AcoustID.Chromaprint.Image.this C# (CSharp) Method

this() public method

public this ( int i, int j ) : double
i int
j int
return double
        public double this[int i, int j]
        {
            get { return m_data[m_columns * i + j]; }
            set { m_data[m_columns * i + j] = value; }
        }