// dnlib: See LICENSE.txt for more info
namespace dnlib.DotNet {
///
/// Interface to access a local or a parameter
///
public interface IVariable {
///
/// Gets the variable type
///
TypeSig Type { get; }
///
/// Gets the 0-based position
///
int Index { get; }
///
/// Gets/sets the variable name
///
string Name { get; set; }
}
}