How to Implement Dependency Injection to WPF Application
Add the NuGet packages to the project Add Microsoft.Extensions.DependencyInjectionMicrosoft.Extensions.Hosting Add Microsoft.Extensions.Hosting Modify App.xaml.cs file
How to combine multiple rows into a single string in Oracle
This was the question in my mind that how to concatenate multiple rows into single column. We can do with built-in function called ‘listagg’.This is the example of the code
How to Measure execution time in C#
This Requires System.Diagnostics name space.This might need to be converted from milliseconds to other unit. 2. By using TimeSpan