Thaina Yu
                                            Thaina Yu
                                        
                                    @sureshdagooglecom I can't reopen this issue by my own
Is this already fixed?
I have wrap every `RewardedAd`'s event with `MobileAdsEventExecutor.ExecuteInUpdate` and it seem the problem are not persist anymore Should this SDK consider calling every event in update by default?
I would like to support this feature. And would like it to use only `namespace` keyword instead of `namespace internal` The usefulness of this is just like `friend` in C++...
I too am more align of expression block than this feature. But actually I prefer this concept than expression block, just don't like the syntax. Maybe this is worth consider...
For parameterless maybe `var s = null into () => { return 42; };` But if we consider people using reactivex I think they would more align to have `var...
Additionally I think Sequence Expressions will be great if we could use it in conjunction with single line `try/catch` block ```C# var user = try (DoSomething();Loging();await GetUserFromDB(userID)) catch(Expression ex) =>...
@CyrusNajmabadi Nowaday you can't assign variable out of `try` block. There was already some proposal on `try expression` I just add that we could also write try expression to assign...
Totally agree But I would disagree to allow name collision. It should not collide with any other field
@gafter Does this concept proposal also support anonymous concept? Such as ```C# public void SetPosition(T pos) where T : concept{ float X,Y,Z; } { x = pos.X; y = pos.Y;...