문제

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