public void WriteByte(long index, byte value)
 {
     if (index < _map.Length)
     {
         try
         {
             _map.Write((ulong)index, value);
         }
         catch
         {
         }
     }
 }
Example #2
0
 public void WriteByte(long index, byte value)
 {
     if (index < _map.Length)
     {
         try
         {
             _map.Write((ulong)index, value);
             ByteWritten?.Invoke(this, new EventArgs());
         }
         catch
         {
         }
     }
 }
 public void WriteByte(long index, byte value)
 {
     if (index < Length)
     {
         try
         {
             _map.Write((ulong)index, value);
             if (!_disable_byte_written)
             {
                 ByteWritten?.Invoke(this, new EventArgs());
             }
         }
         catch
         {
         }
     }
 }