0

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.

2
  • 1
    use dotnet peek to decompile code. Commented Apr 6, 2018 at 19:05
  • 1
    A lot of it is available in the Reference Source or the GitHub repo for .NET Commented Apr 6, 2018 at 19:06

1 Answer 1

1

.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.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.