What is Caché Object Script's method for passing parameters to a base constructor?

For example, in C# you would do the following:

public MyConstructor(string id) : base(id) { }

where id is the value you wish to pass to the base constructor.

有帮助吗?

解决方案

Do ##super(id)

super must be in lower case.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top