Is there a way to see how Microsoft .NET methods are implemented (e.g. what happened in .NET Core) or is it a blackbox?
Or are there any links to get a better understand on how these methods works, not just seeing the return of the methods?
For example the RecognizeAsync method in SpeechRecognitionResult class.
- 1use dotnet peek to decompile code.Anirudha Gupta– Anirudha Gupta2018-04-06 19:05:45 +00:00Commented Apr 6, 2018 at 19:05
- 1A lot of it is available in the Reference Source or the GitHub repo for .NETRon Beyer– Ron Beyer2018-04-06 19:06:38 +00:00Commented Apr 6, 2018 at 19:06
Add a comment |
1 Answer
.Net Core itself is open source. The method you're taking about is not actually .Net Core but a UWP SDK method, which more often that not is implemented in C++/COM and is most definitely not open source. Outside of reading the documentation, understanding the method internal workings is going to be very difficult.