Wednesday, July 17, 2024

Reading

 https://theswissbay.ch/pdf/Gentoomen%20Library/Programming/CSharp/APress%20A%20Programmer%27s%20Introduction%20to%20C%23.pdf

https://www.red-gate.com/simple-talk/wp-content/uploads/RedGateBooks/ChrisFarrell/Under_the_Hood_of_NET_Management.pdf


https://learn.microsoft.com/en-gb/previous-versions/visualstudio/visual-studio-2015/debugger/specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger?view=vs-2015&redirectedfrom=MSDN


Bundling and Minification | Microsoft Learn
Async/Await FAQ - .NET Parallel Programming (microsoft.com)
Asynchronous Programming - Async Performance: Understanding the Costs of Async and Await | Microsoft Learn
Asynchronous Programming - Easier Asynchronous Programming with the New Visual Studio Async CTP | Microsoft Learn
Using Asynchronous Methods in ASP.NET 4.5 | Microsoft Learn

https://learn.microsoft.com/en-us/dotnet/architecture/modern-web-apps-azure/common-web-application-architectures

https://learn.microsoft.com/en-us/azure/bastion/connect-ip-address

https://www.devsecurely.com/blog/2024/06/cors-the-ultimate-guide?ref=dailydev

https://blog.bytebytego.com/p/ep147-the-ultimate-api-learning-roadmap?ref=dailydev


https://learn.microsoft.com/en-us/dotnet/standard/exceptions/best-practices-for-exceptions

https://codeblog.jonskeet.uk/2010/09/03/reimplementing-linq-to-objects-part-1-introduction/


https://addyosmani.com/blog/first-principles-thinking-software-engineers/?ref=dailydev


https://jonskeet.uk/csharp/parameters.html


 using (MemoryStream memoryStream = new MemoryStream())

 {

     BinaryFormatter binaryFormatter = new BinaryFormatter();

     binaryFormatter.Serialize(memoryStream, dtUserGroup);

     sizeInBytes = memoryStream.Length;

 }

No comments:

Post a Comment