Csharp

Log4Net Example in C# Console Application

using System; using System.Collections.Generic; using System.Linq; using System.Text; using log4net; using log4net.Config; using System.IO; namespace HowToSolveNow { class Program [...]

Display a DataGrid by importing a CSV file in C#

Here is the steps to show a datagrid in a windows form from a CSV file. Step 1. Put one button(name=brnbrowse) in your windows form Step 2. Put one openFileDialog control(name=openFileDialog1) Step [...]

Invalid icon file located in Application Folder of Setup Project

Follow the below steps to remove that error while building your setup file. Step1. Click F4 by selecting your setup project. Step2. In the properties window, find AddRemoveProgramsIcon and then choose [...]

How to send HTTPS Post Request with C#

Please follow the below steps to send https post request. Create new C# website application. Open the default code behind file i.e. Default.aspx.cs add the following two namespace using Syste [...]