
Image from Pexels
Tagged articles - C#
Found 186 articles tagged with C#
06
Oct
2015
MSMQ JSON message formatter
.NET217 titlesUse JSON to serialize and deserialize message queue messages
0
Storing objects in the message queue (MSMQ) is based on the serialization of the object instance using some of the serializes, basically any class the implements IMessageFormatter. Most commonly used ones are BinaryMessageFormatter and XmlMessageFormatter.
I prefer XmlMessageFormatter over BinaryMessageFormatter, mostly because messages are stored in a readable format inside the queue, so in case something goes wrong you can direly check the content of the message using built Computer Management MMC (Microsoft management console) in the.
...read more
28
Sep
2015
Parallel infinite loop in C#
.NET 217 titlesUsing Parallel for infinite loop in C#
0
In .NET framework 4.5 Task Parallel Library of TPL is introduced. It is the same thing as Threading but in additional layer of abstraction...read more
25
Sep
2015
Easy collection comparing in C#
.NET217 titlesCopmare collections in C# the easy way
0
Collections are part of pretty much any application and they are convenient to store any type of data. Introducing LINQ in .NET things got a lot easier as your code does not need to be full with loops for performing simple operations on collections of any type...read more
25
Sep
2015
Multiple console output in C#
.NET217 titlesWrite console output to file and screen at the same time
0
Console applications are the simplest one and very convenient when you need to quickly test some functionality. Some time the functionality that you test with console application may take time and since it is test usually it happens that it crashes...read more
30
Aug
2015
JSON data validation in C#
.NET217 titlesValidate JSON data with C# in .NET framework 4
0
JSON is slowly but certainly taking over the throne of XML. It is much lighter, a lot easier to deserialize, but still there are some features that XML is better in...read more
08
Jul
2015
Changing service reference configuration in the runtine
.NET217 titlesUpdating service reference without restarting your applcation
0
Using web services in C# and in general in .NET based applications is really easy. All you need is a service URL and Visual Studio will generate both proxy classes for service communication and configuration for web service endpoints and bindings...read more
03
Jul
2015
Hide IIS server info in a resposne
.NET217 titlesHide server info in ASP.NET with simple web.config setting
0
Last year I wrote an article about ASP.NET web application security check list. Apparently there are always more things to add to improve your web application security...read more
17
Jun
2015
Managing keys for shared collections in .NET
.NET217 titlesEnsuring unique keys for shared collections in .NET
0
Dealing with shared collection in application is always a bit tricky. You have to take care of concurrent access if you are accessing from multiple threads.
One more thing which does not look so important as it is not difficult to implement is managing keys for addressing values...read more
12
Jun
2015
Auto reload application config in .NET
.NET217 titlesReflect config file changes in application in a runtime
0
In .NET working with configuration is really easy and there are bunch of .NET classes that rely on config values so you do not have to specify values in their constructors. For me it a common practice to instantiate database connections of WCF client by only creating an instance with parameterless constructor while keeping values in config file...read more
02
Jun
2015
Easy and simple way to bind ADO object to POCO object
.NET217 titlesSimple one way binding of ADO database objects to POCO
0
This article is base don the article I wrote in September last year. Basically I wrote this piece of code because I needed something really lite for one way binding...read more
24
May
2015
PowerConsole extension to System.Console
.NET217 titles.NET console extended
0
Most of developers, at least all the ones I know mostly use Console to test their code as it is the quickest way to do it. Despite unit tests, console is a fastest way to test your code where you can easily output the results.
However if you have a lot of text in output you can get lost in results...read more
17
May
2015
Working with GoogleMaps in jQuery style
JavaScript31 titlesjQuery plugin for GoogleMaps
0
I've used GoogleMaps on several web projects and it seemed to me that I'm repeating a lot of code used in the previous projects which lead me to write a common Javascript library to help me easily reuse the code by only copying the JavaScript library to a project or referencing it from CDN.
I could not think of a better way to build this library than to use jQuery and build a pligin for this.
...read more
13
May
2015
Reading config value to a proper data type
.NET217 titlesAutomatic conversion of values from app.config
0
Reading from application config is pretty easy in .NET. You literally need one line to fetch the value...read more
18
Apr
2015
Generate sitemap.xml on the fly in Umbraco CMS
Umbraco CMS25 titlesSimple sitemap.xml Umbraco handler
0
Sitemap.xml is important component of SEO which is responsible for indexing your website. Search engine robots are generating indexes of your website based on this file.
Since content in Umbraco website is dynamic, it makes not so much sence to have static sitemap.xml file for indexing your content...read more
16
Apr
2015
Fast image search in .NET using C#
.NET217 titlesSearching images on the file system with C#
0
Searching files on the file system is pretty easy using System.IO namespace classes. The problem is if you need to youery file system with some things which are related to a file, but not related to file system itself...read more
.NET
19
Dec
2020
Setting up SQL Server IDistributedCache with migration in ASP.NET Core
Embedding SQL Server caching in a project with EFCore migration
11
Dec
2020
Representing available string values for parameters as list in Swagger ASP.NET Core
Valid values as list in Swagger UI in ASP.NET Core
24
Nov
2020
Running multiple queries at the same time in EF Core
Overcoming the limitation of EF Core query execution
17
Nov
2020
Accessing multiple databases from the same DbContext in EF Core
Multiple database access from the same DbContext in Entity Framework Core 5
11
Sep
2020
Building and using advanced .NET Core CLI global tools
Handling commands, arguments and options in .NET CLI global tool application
6
Sep
2020
Seeding data in EF Core using SQL scripts
Another way of seeding data in EF Core
JavaScript
28
Oct
2018
HTML5 localStorage with expiry with vanilla JavaScript
Using HTML5 localStorage with expiry
8
May
2018
Monitoring DOM changes with JavaScript
Handling DOM changes with plain JavaScript
9
May
2017
Non blocking CSS load on the page
Load external CSS files in an async manner
16
Mar
2017
Serialize html form to JSON without using JQuery
Transform user input from HTML form fields to JSON
17
Jan
2016
Copy text value to clipboard using jQuery
Simple sample of using jQuery to copy value to clipboard
11
Jan
2016
Resize image on the client side with JQuery
Reducing the upload sie by resizing image on the client side
SQL/T-SQL
23
May
2020
Identifying opened connections for the specific application in SQL Server
Connection listing queries in SQL Server
3
May
2018
Reading JSON data in T-SQL on SQL Server
Extracting values from JSON string on SQL Server using T-SQL
28
Apr
2016
Create XML/HTML with T-SQL
Generating XML/HTML output in SQL Server
24
Nov
2015
IP address to octets split in TSQL
Split IP addresse into octets in SQL Server
20
Jul
2015
Getting first and last second of the current year, month and day
Using minimum and maximum date time in SQL query
13
Apr
2015
Dealing with duplicate rows in SQL Server
Finding and cleaning up duplicate rows in SQL Server tables
Umbraco CMS
2
Mar
2018
Minify HTML output of your pages
Minification of HTML output using ASP.NET IHttpModule
18
Apr
2015
Generate sitemap.xml on the fly in Umbraco CMS
Simple sitemap.xml Umbraco handler
2
Mar
2015
Accessing UmbracoHelper in HttpHandler request
Working with UmbracoHelper and IPublishedContent in HttpHandler
14
Sep
2014
Same page language switching in Umbraco
Land on the same page in different language in Umbraco using Relations
4
Sep
2014
Getting cropped image the smart way
The way to get cropped image URL with option to load original image too
27
Aug
2014
Fastest way to return JSON result from a controller
Resturn JSON in MVC controller action