How To Debug Nuget Packages In Net .net Application

Few days ago, when i was debugging our application ( which was written with .net), i faced with issue, when the bug was hidden in the nuget package. It was required to debug the code inside the nuget package. In this post i will share my experience with debugging the code from the nugget package.

Read More

C# Best practices

  • Do not rename parameters. Renaming parameter variables may lead to the situation, when callers who are passing arguments by parameters will have to modify their code.
Read More

Cheat sheet - C# 7.0 all new features in one application

C# 7.0 introduced a lot of interesting stuff. Sometimes it is better to show than to say, so this post is attempt to show these new features on a small application. This program is a small calculator, that can just divide numbers. Application repository is available at github. If you think i missed some C# 7 feature fill free to create pull request.

Read More

JMeter introduction

During the software development process we often facing with need to test something. Depending on your goals and testing objects we choose the most appropriate testing tool. Today i want to show Jmeter and how it can be used. This article doesn’t cover all Jmeter features and testing techniques. This is just brief description of Jmeter functionality, the goal of this article is to introduce JMeter.

Read More