Page 1 of 1

[SOLVED] Methods unsupported in BETA 13

Posted: Thu Feb 01, 2018 11:22 am
by Ajcek
Hi

I wonder if support for the following methods is planned:
DateTime.op_Addition
Assembly.GetTypes
List`1.GetRange
Delegate.DynamicInvoke
Lazy`1.get_Value
Lazy`1..ctor

Is there currently any replacement for Assembly.GetTypes()?

Re: Methods unsupported in BETA 13.3

Posted: Fri Feb 02, 2018 8:25 am
by JS-Support @Userware
Hi Ajcek and welcome to the forums.

We have quickly implemented for you the following methods:

- DateTime.op_Addition
- Assembly.GetTypes
- List`1.GetRange

You can download the Beta 13.4 that contains the new features from the following URL:
http://forums.cshtml5.com/viewtopic.php?f=6&t=8309

As for "Lazy`1.get_Value" and "Lazy`1..ctor", we have just implemented the class "Lazy2<T>" that provides the same functionality. Please replace your instances of Lazy<T> with Lazy2<T>.

As for "Delegate.DynamicInvoke", do you think that you could replace the call with "Delegate.Invoke"?

Thanks a lot.
Regards,
JS-Support

Re: Methods unsupported in BETA 13

Posted: Sat Feb 03, 2018 3:29 am
by Ajcek
Thanks. It works now. My project compiles

[admin edit: moved other issue (Generic Parameter) to a separate topic]