C# – Paste Values as Transpose in Excel
Need to paste values as transpose in excel programmatically using C#? This post is going to guide you to do so. What Is Transpose Values in MS Excel? Transpose values in MS Excel is converting […]
Need to paste values as transpose in excel programmatically using C#? This post is going to guide you to do so. What Is Transpose Values in MS Excel? Transpose values in MS Excel is converting […]
This article demonstrates the C# code snippet to easily convert excel files to csv files. In this code example, you can define your own desired csv delimiter (comma, semicolon, pipe etc.) To do so, you […]
Here is a C# code example that will help you to find the mail ID of sender from Outlook Mail Item Object. We use SenderEmailType property of Outlook MailItem object to determine the email type […]
Here is an example C# code that helps you work on attachments in an outlook mail item. You can use Attachments property of Outlook MailItem object for saving attached file in outlook mail item by […]
This article describes how to create a C# program that reads mails from your outlook inbox. You can do this using the Microsoft.Office.Interop.Outlook.dll. Here is the step by step procedure of creating automation of reading […]
Are you developing a C# program that automates the password protected excel file? You might be in irritative situation as when your excel file is opened by C# code, it will prompt you to enter […]
Here, in this post, we are going to show you an C# code example of exporting a C# datatable data to MS Excel with headers. Step1: Add reference to Microsoft Excel Interop in your application. […]
This post shows an example of listing name of all files with extension, available in a folder. We need to import System.IO namespace in our program and Directory.GetFiles() method helps you to get the list […]
In this post, we will demonstrate an example of creating a directory by using C# code. For creating a directory in file system, you need to import System.IO namespace in program and CreateDirectory() method of […]
When you need to check whether a particular file exists on a specified path, you can use File.Exists(string) method of C#. This method requires full file name i.e. file name along with its extension and […]