✅ async Task throws exception if not explicitly defined
I have been using asynchronous Tasks all over my project to fetch and send data to a database perfectly fine. But for some reason any async Tasks in one database table handler class throws an exception (See Image). I can fix it by explicitly defining Task to be
using Task = System.Threading.Tasks.Task; but that doesnt make any sense to me since it uses the exact same using statements as another database handler class which works perfectly fine and Task isnt defined by anything else at all. Just need some help solving this mystery