Yonatan
Yonatan
CC#
Created by Yonatan on 6/19/2024 in #help
Teaching C# - Basic and Advanced topics (that are must learn)
Any more advanced topics you can think of?
13 replies
CC#
Created by Yonatan on 6/19/2024 in #help
Teaching C# - Basic and Advanced topics (that are must learn)
They are in rabbit
13 replies
CC#
Created by Yonatan on 6/19/2024 in #help
Teaching C# - Basic and Advanced topics (that are must learn)
Absolutely, also adding events
13 replies
CC#
Created by Yonatan on 6/19/2024 in #help
Teaching C# - Basic and Advanced topics (that are must learn)
We work mostly on asp .net core api (backend applications) Using Mongo and Rabbit for multiservicing.
13 replies
CC#
Created by Yonatan on 5/7/2024 in #help
What is the best EXPERT .net api course? or generally C# course
well yes but actually no when you look for something you find it there, but when there is a section that I want to implement and not sure how, and there is a perfect design pattern for that how would you find it? or how would you find the best practice for implementation?
11 replies
CC#
Created by Yonatan on 5/7/2024 in #help
What is the best EXPERT .net api course? or generally C# course
absolutely. but I'm sure there are pathways with practice projects and examples to look over. my friends have been writing controllers for some months and only now discovered you can put your exception handlings in a middleware. I am looking for something that can make sure I got all of those with best practices and design patterns. outside experience...
11 replies
CC#
Created by Yonatan on 2/23/2024 in #help
implement abstract in subclasses
Fixed by quick actions and project button!
2 replies
CC#
Created by Yonatan on 9/10/2022 in #help
Override Function and add variables?
Cool, Thanks.
7 replies
CC#
Created by Yonatan on 9/10/2022 in #help
Override Function and add variables?
Alright, Thanks, Is there any way to workaround this? or should I just make a new function
7 replies
CC#
Created by Yonatan on 9/10/2022 in #help
Override Function and add variables?
I tried doing it myself on visual studio Community but I get an error: no suitable method found to override.
7 replies
CC#
Created by Yonatan on 8/17/2022 in #help
How do I call a null event?
I Won't deal with them now than, Thank you!
21 replies
CC#
Created by Yonatan on 8/17/2022 in #help
How do I call a null event?
and yea, my problem was I was creating 2 PlayerInput and I though triggering the event of one will also trigger for the others
21 replies
CC#
Created by Yonatan on 8/17/2022 in #help
How do I call a null event?
awesome, Thank you!
21 replies
CC#
Created by Yonatan on 8/17/2022 in #help
How do I call a null event?
Done, but the function will stay subscribed until I Unsubscribe. right?
21 replies
CC#
Created by Yonatan on 8/17/2022 in #help
How do I call a null event?
public void Start()
{
PlayerInput Player = new PlayerInput();
Player.MyEvent += ShootDisk;
}
public void Start()
{
PlayerInput Player = new PlayerInput();
Player.MyEvent += ShootDisk;
}
Start is called at the start of the program. the code I mentioned above is inside the class "PlayerInput".
21 replies