Posts by Enzo Ferrari • 63 points
2 posts
-
1
votes0
answers29
viewsQ: How are event subscribers executed after the call?
I’m trying to make a visual representation of random number generation using UWP. Basically, there are X rectangles on a screen, each represents a number, so the first rectangle is 0, the second 1…
-
5
votes1
answer78
viewsQ: A method can access the properties of the object it belongs to when stored through a delegate?
I’m building a dictionary of the following kind: <string, delegate>, that will access a method belonging to an object of the following class: class Example{ public int Power { get; set; }…