mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
16 lines
293 B
C#
16 lines
293 B
C#
using System;
|
|
|
|
class Class
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
int z = GetParamLength(__arglist(1, 2));
|
|
}
|
|
|
|
public static int GetParamLength(__arglist)
|
|
{
|
|
ArgIterator iterator = new ArgIterator(__arglist);
|
|
return iterator.GetRemainingCount();
|
|
}
|
|
}
|