I am working with some code, where I have 2 classes with very similar logic and code. I have protected async void LoadDataAsync() method on both classes. Curren
protected async void LoadDataAsync()
Yes, it's fine, but you should use async Task instead of async void. I have an MSDN article that explains why.
async Task
async void