I have a C++ .NET console application for which I changed the icon that appears in the file manager. That’s correct. But I also want the icon to be changed in the top bar of the console and in the task bar. It still let the old default icon.
I saw browsing SO that SetConsoleIcon() exists but it seems to be a Win32 API call???? Can’t I have another way to do the job using .NET call(s)?
Thanks to tell me (an other users) if you have an idea about that.
It is not possible using ‘pure’ .NET, as from the application’s point of view, Console has no icon.
The console having window with an icon is just an implementation detail.