

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 to edit images to create 2D animations to create math graphics to draw formatted text Intro of imaging on C#…

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 date and changes frequency to sitemap. As stated in sitemap protocol description: Using the Sitemap protocol does not guarantee that web pages…

This article is published in ukrainian language. Translation is coming soon.

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 request with some data to the server Recieves response messege from server That list is a minimal requirements to be…

The relevance of cosmology On account of technology deficiency specialists were unable to inspect far space in detail before XX century. By the end of the XIX century telescope had been already invented. Due to its small accuracy the appliance could recognize form, color and trajectory of the nearest astronomical bodies: planets, coments, Moon, Sun and so on. To see…

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 conditions). Regular expressions can be used with many popular programming languages: C#, javascript, pyton, php and so on. Note: rules…

Selenium is a set of tools that are used to automate web browser work. It is possible to use these tools with such popular languages as C#, PHP and Java. How to install Selenium tools to the project in Visual Studio? First of all, it is necessary to install Selenium.Webdriver packages to the project. By means of NuGet package manager…

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 know: Basic priciples of Object-oriented programming How to create WPF or WinForm projects To make it work you should get…