Hello Skov,
ELEMENT_TYPE_VAR refers to the classgeneric variable. ELEMENT_TYPE_
MVAR refers to methodgeneric variable.
For more details see CLI ECMA specification (
http://www.ecma-international.org/publications/standards/Ecma-335.htm), chapter II.23.1.16 "Element types used in signatures":
ELEMENT_TYPE_VAR - 0x13 - Generic parameter in a
generic type definition, represented as number
ELEMENT_TYPE_MVAR - 0x1e - Generic parameter in a
generic method definition, represented as number
The following chapter should be useful reading too (II.23.2 "Blobs and signatures").
-Karel