2023-05-08 15:56:10 +03:00

12 lines
183 B
C#

namespace MonoFN.Cecil.Rocks {
public static class ParameterReferenceRocks {
public static int GetSequence (this ParameterReference self)
{
return self.Index + 1;
}
}
}