OISC_VM.MemoryController.ReadData C# (CSharp) Метод

ReadData() публичный Метод

public ReadData ( long memoryLocation ) : long
memoryLocation long
Результат long
        public long ReadData(long memoryLocation)
        {
            //TODO_x64: Need to implement a bit converter that can processes 64 bit addresses.
            long dataValue = BitConverter.ToInt64(_memory, (int)memoryLocation);
            return dataValue;
        }