using ICSharpCode.Decompiler.Disassembler;
using Mono.Cecil;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ICSharpCode.Decompiler.IL
{
interface ISupportsUnalignedPrefix
{
///
/// Returns the alignment specified by the 'unaligned' prefix; or 0 if there was no 'unaligned' prefix.
///
byte UnalignedPrefix { get; set; }
}
interface ISupportsVolatilePrefix
{
///
/// Gets/Sets whether the memory access is volatile.
///
bool IsVolatile { get; set; }
}
}