Friday, January 18, 2019

Browse dot net framework source code

Microsoft has launched a browsable version of the .Net reference source code at https://referencesource.microsoft.com/.

Also, there is an extension available at Visual Studio marketplace which lets you press F12 to open the source code for anything in the .Net framework in a browser
https://marketplace.visualstudio.com/items?itemName=SchabseSLaks.Ref12#overview
https://github.com/SLaks/Ref12


No comments:

Regex Email validation in c# dot net core

 Use this regex /^_?[a-zA-Z0-9]([a-zA-Z0-9]*[._+-])*[a-zA-Z0-9_]+@(?!-)[A-Za-z0-9-]{1,63}(?<!-)(\.(?!-)[A-Za-z0-9-]{1,63}(?<!-))*\.[A-...