-
-
Notifications
You must be signed in to change notification settings - Fork 44
Open
Description
In x# 2.24.0.1 a call which uses params results to invalid parameters. It seems that only the first param is used and other parameters are added with nil.
public class TestClass
public method TestMethod(args params usual[]) as void
Console.WriteLine("TestMethod called with {0} arguments.", args.Length)
return
end class
function Start() as void strict
var test := TestClass{}
var testUntyped := (usual)test
test.TestMethod(1, 2, 3)
testUntyped.TestMethod(1, 2, 3)
Console.ReadLine()
return
Metadata
Metadata
Assignees
Type
Projects
Status
To do
Status
Needs testing