12 lines
183 B
C#
12 lines
183 B
C#
|
|
namespace MonoFN.Cecil.Rocks {
|
|
|
|
public static class ParameterReferenceRocks {
|
|
|
|
public static int GetSequence (this ParameterReference self)
|
|
{
|
|
return self.Index + 1;
|
|
}
|
|
}
|
|
}
|