Category: C#.NET

  • Series 1: Unveiling Canarys Copy Project

    Revolutionizing Azure DevOps Migrations with Canarys Copy Project Have you ever wished for a magic wand that could effortlessly copy teams, groups, team members, group users, iterations, areas, team settings, board settings, boards, work items, test plans, suites, repositories, pipelines, builds, releases, and even delivery plans? In the ever-evolving landscape of DevOps, the need for…

  • .Net Framework to .NET (.Net Core) Migration

    In this article, we will discuss about the things we should consider when migrating code from .NET Framework to .NET. The Migration of project from .NET Framework to .NET is relatively a straightforward task but the complexity of the project determines how much effort is involved after the initial migration.Applications which are created on .NET…

  • Converting UserControl into a dll

    User controls are containers into which you can put markup and Web server controls. You can then treat the user control as a unit and reuse it in many other ASP.NET pages. But here I show you how to combine any number of UserControls into a dll and re-use across applications. Step1: Creating a UserControl…

  • What’s New In C# 6.0?

    Microsoft has released the preview version of Visual Studio 2015 and .NET 4.6 for developers to try and provide feedback on usage or issues. .NET 4.6 preview comes with C# 6.0 which includes the new additional features expected by developers to improve the coding productivity. In this article I am going to describe the new…

  • How to build chat application using SIgnalR

    Introduction Hello friends, This blog is related to a chat application which conatins the exchanging the words in between and also you can share the files.This is a live chat applcation which uses SignalR as a  Dot net library for exchanging the data.  Lets start the discussion in brief.I hope you will be able to…

  • Displaying Postscript text and Vector images on PDF in C#.net using Imageglue

    Postscript is a language used for creating vector Images,Vector images are made up of many scalable objects  and they are  defined  by mathematical equations rather than the pixels ,so they always renders higher quality images. The Advantages of Vector Images over Bitmap images 1.Vector images are resolution independent, how much ever we resize the image…

  • Reading GMAIL Inbox using ASP.NET

    In this blog I will explain how to read emails from pop3 server using the free open source library OpenPop.Net. This library provides you very easy API to access and read emails from the POP3 Servers. Download the library from the following URL. Download OpenPop.Net Once you have the library we can start building our…

  • How to implement and use Extension Methods in C#

    Do you wish to extend the built-in types with new methods? Want to extend custom types with new methods? In C#, we can use the Extension Methods to extend both built-in types and custom types. These extension methods are introduced in C# 3.0 What are Extension Methods? Extension methods are special kind of static methods…

  • Building Xamarin.Android application in C#

    Overview In this article we’ll look at how to create, deploy, and run a Xamarin.Android application. We’ll create a hello world application, showing how to build the user interface both in code and by using Android XML. Creating a Xamarin.Android Application Let’s begin by creating a new Xamarin.Android solution. Xamarin.Android includes several templates for creating…

  • Deploying an Outlook 2010 Add-in Using C#.NET And Visual Studio 2010

    How to deploy an Outlook 2010 Add-in Using C#.NET And Visual Studio 2010 In the previous blog, we walked through the steps to build an outlook 2010 add-in, how to create a custom task pane, add a custom context menu item and add a ribbon in the Outlook 2010. In this post, I’ll take you…