BrainBeast

Hunt down knowledge with our help

image

Imaging on C#

There are many possibilities to process graphical information in .Net. Microsoft has Graphics Device Interface for imaging. Its functionality is provided by System.Drawing.Common namespace in .Net Core and Framework. By means of C# imaging it is possible: to create images…

sitemap

Sitemap generator application

You can download source from our repo or download portable program. What is Sitemap? Sitemap is a set of urls to website pages. Site owner should put the most important page urls with some extra information like priority number, modification…

client-server

FAQ about HTTP Client with examples

What is HTTP Client? In client-server model Server is the one who handle requests and send responses, Client is the one who send requests and handle responses. Generally speaking, Client is a program, library or a program method that: Sends…

regex

FAQ about Regular expressions with examples

Regular expressions are both textual data processing method and language for building masks. Mask is a set of symbols and special characters that represent some pattern, which is used to catch segments of text for further work (replacing, extracting, checking…

working-woman

Drag-and-Drop on C# in WPF

Developing desktop WPF or WinForm projects, you can stumble upon an idea of creating drag & drop functionality. Drag-and-Drop effect will simplify file manipulation between browser, computer file system and desktop applications. To understand the following sample you should already…