TECHNOLOGIES
ANSWERS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About word
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Naresh Beniwal (9)
Mahesh Chand (5)
Vulpes (4)
C# Curator (4)
Atul Sharma (2)
Jasminder Singh (2)
Sandeep Singh Shekhawat (2)
Manas Mohapatra (2)
Sachin Mishra (2)
Erika Ehrli Cabral (2)
Mukesh Nailwal (2)
Yogendra Kumar (2)
Dharati Patel (2)
Sourav Kayal (1)
Jignesh Trivedi (1)
Jeetendra Gund (1)
Vishwakant Tripathi (1)
Rizwan Ali (1)
James Brown (1)
Gnanavel Sekar (1)
Khurram Shehzad (1)
Kapil Gaur (1)
Pankaj Kumar Choudhary (1)
Chandani Prajapati (1)
Surya Kant (1)
Mukesh Kumar (1)
Mike Gold (1)
Ziggy Rafiq (1)
Ravinder Singh (1)
Arjun Panwar (1)
Santosh Karanam (1)
Sardar Mudassar Ali Khan (1)
Jay Pankhaniya (1)
Madhu Patel (1)
George (1)
Sharad Gupta (1)
Abhishek Jaiswal (1)
Aashina Arora (1)
Mohamed Azarudeen Z (1)
Teddy Kurian (1)
Jay Krishna Reddy (1)
Rinki (1)
Manoj Kumar Duraisamy (1)
Ishika Tiwari (1)
Deepak Tewatia (1)
Abdul Basith (1)
Shanuka Maheshwaran (1)
Aman Gupta (1)
Rakesh (1)
Akshay Phadke (1)
Jignesh Kumar (1)
Gajendra Jangid (1)
Munesh Sharma (1)
Rohatash Kumar (1)
Syed Shakeer (1)
Hemant Srivastava (1)
Alagunila Meganathan (1)
Uday Dodiya (1)
Munib Butt (1)
Kisorjan Jakathiswaran (1)
Akash Bhimani (1)
Lizzy Landy (1)
Ramprakash Duraisamy (1)
Yogeshkumar Hadiya (1)
Abhishek Yadav (1)
Mukesh Sagar (1)
Toufik El Azzaoui (1)
Rajan Mishra (1)
Harshad Tretiya (1)
Rajanikant Hawaldar (1)
Sanwar Ranwa (1)
Hussain Munaf (1)
C# Corner Live (1)
Related resources for word
No resource found
2 Ways to Implement Asynchronous Technique in C#
9/25/2023 12:01:05 PM.
In this article we will see how to implement asynchronous style in C# application (yes, even in .NET 4.0).
Implement Multiple Inheritance In C#
9/25/2023 5:59:06 AM.
C# does not support multiple inheritance for classes in the traditional sense, meaning a class cannot inherit from more than one class. However, C# provides mechanisms to achieve similar functionality
Object Vs var Vs Dynamic Type in C#
9/22/2023 10:54:17 AM.
In this article you will learn about Object Vs var Vs Dynamic type in C#.
Image Operations Using Word Document in C#
9/22/2023 10:31:14 AM.
In this article you can learn various image operations using a Word document in C# programming.
C# ref Keyword
9/21/2023 11:49:00 AM.
C# ref and C# out keywords are used in method parameters. This article helps you decide whether to use a ref or out keyword, especially when the parameter types are value types.
How To Use Extension Methods In C#
9/21/2023 4:17:56 AM.
This article explains use of Extension Methods in C# to increase the functionality of a type (class).
Params Keyword With IEnumerable In C# 6.0
9/20/2023 11:26:24 AM.
The params keyword in C# allows you to pass a variable number of arguments of the same type to a method. This feature simplifies method calls when you need to pass a variable number of arguments witho
Type Inference in C#
9/20/2023 5:31:24 AM.
Understand what is type Inference in C# and how to implement it in your code.
Add Replace And Remove Bookmarks In Word Using C#
9/18/2023 11:11:45 AM.
In Microsoft Word documents, bookmarks are used to mark specific locations or sections for easy reference. You can programmatically add, replace, and remove bookmarks in Word documents using C# and li
Converting Numbers To Words Using The Indian Numbering System
9/18/2023 8:21:46 AM.
In this article, I'd like to present a similar program using the Indian numbering system. This system differs from the US/UK systems in that it doesn't use 'millions' but instead uses
Custom Extension Method In C#
9/15/2023 5:05:51 AM.
In C#, extension methods are a powerful feature that allows you to add new methods to existing classes without modifying their source code. A custom extension method in C# is a user-defined method tha
Automatic Reading And Verification Of Microsoft Word Document In C# Using Aspose.Words
9/15/2023 4:33:59 AM.
Student Course Registration and Verification automatically reads the Roll Number slips in a Microsoft Word document. It parses the Microsoft Word document and then makes corrections if required. It al
How To Use Dynamic To Return Different Objects On Runtime In C#
9/14/2023 11:19:37 AM.
A lot of time you get a requirement to return different kind of object from a single method. Is it possible? Yes there are ways by which you can deliver different objects on run time and dynamic is on
Dynamic Data Type In C#
9/11/2023 5:32:59 AM.
C# dynamic keyword declares a dynamic variable that can store any type. Lean how to use a dynamic type in C# and how to convert a dynamic type to other types in C#.
Enumeration In C#
9/10/2023 10:32:46 PM.
In this article I explain how to use enum, create an enum and get values from an enum with their enumeration list.
Convert Word to PDF with Power Automate
9/7/2023 2:46:05 PM.
Explore a step-by-step guide on converting Word to PDF with Microsoft Power Automate, all without the need for premium connectors. Learn how to streamline your document conversion process and save cos
Ref And Out Keywords In C#
9/6/2023 10:40:13 AM.
In C#, the ref and out keywords are used as parameter modifiers in method signatures to indicate how method arguments should be treated. They are often used when you need to pass arguments to a method
Learn All About Inheritance in C#
9/5/2023 7:05:38 AM.
Inheritance is a fundamental concept in object-oriented programming (OOP) and is widely used in C#. It allows you to create a new class that is based on an existing class, inheriting its attributes an
The Top Seven Least-Known, Yet Important, C# Features
9/5/2023 6:36:38 AM.
In this article, you will learn about some of the top important C# features that are often not very well known.
Color Syntax Editor Part II - Exporting a RichTextBox to a Microsoft Word Document
9/1/2023 4:17:56 AM.
This article is part II of a color syntax editor created back in 2003. It describes how to export the contents of the RichTextBox to Word and Open the Word Document Programmatically.
C# Security: Best Practices for Secure Coding
8/31/2023 5:05:34 PM.
In this article, we will discuss some of the best practices for writing secure code in C#. These practices include using secure password hashing algorithms to store passwords, validating user input to
Dynamic Keyword in C#
8/31/2023 9:22:28 AM.
C# is a strongly-typed language. What does that mean? In the C# language, every variable and constant has a pre-defined type. But what if you are not sure of the type of the variable? This is where dy
Converting Dates to Words in C#
8/29/2023 10:02:10 AM.
In this article, I'd therefore like to present a simple program which does all this.
Converting Numbers to Words in C#
8/28/2023 10:02:00 AM.
This article shows how to convert a number to words.
When should you use the 'var' keyword in C#?
8/24/2023 9:55:12 AM.
‘var’ is a contextual keyword that was first introduced in C# 3.0. It’s described as contextual because it’s only a keyword when used in a certain context - in other contexts it can be used as an ordi
Leveraging the "using" keyword in C#
8/21/2023 6:00:59 AM.
The “using” keyword in C# is one of the best friends of programmers but many of us may not realize this. The “using” keyword is used in two cases – First when importing a namespace in your code and se
Passing an argument by reference in C#
8/20/2023 7:29:39 PM.
This article contains useful information about how to use ref keyword in your C# program with the proper and easy to understand example.
Params In C#: Pass Variable Number Of Parameters To Method
8/18/2023 11:12:57 AM.
In this article we will discuss about params keyword in C# and how to pass variable number of parameters to method.
Working With The Encryption Password Function In MySQL
8/7/2023 11:21:11 AM.
In this article we will explain the password encryption function and how to return a password string from a plain text password in a string.
How to Generate Word Cloud using React
8/2/2023 9:28:35 AM.
Words are more powerful than swords, Word Clouds are generated for data analysis and visualization techniques.
Capturing Phishing Email Using Custom Middleware in ASP.Net Core Web API
8/2/2023 9:08:59 AM.
To capture and detect phishing emails using custom middleware in an ASP.NET Core Web API, you can follow these general steps:Create Custom Middleware: Create a custom middleware that will intercept
Mastering AJAX Pagination for Custom Post Types in WordPress
7/20/2023 6:54:27 AM.
In this article, we will learn to set up a custom post type and the information about how and why we have to use the custom post type and custom pagination using AJAX.
Create Various Types of Charts in Word Documents in C# and VB.NET
7/17/2023 9:03:57 AM.
By creating charts in your Word document, you can enhance the impact of your content and make it more engaging and informative for your readers. In this article, we will explore how to create Column C
Understanding The Importance Of Tokenization In Machine Learning
7/11/2023 8:24:53 AM.
In this, we will discuss tokenization, its types, techniques with examples, and why we tokenize.
Multi-Threading (3), async, await in C#
7/5/2023 5:48:03 AM.
This article will discuss Async, Wait key words in C#
Understanding HTML Forms and Input Elements
6/27/2023 8:47:37 AM.
Understanding HTML forms and input elements, Forms are an essential part of web development, allowing users to interact with a website by submitting data or making requests. In HTML, forms are created
How To Use Order By in MySQL
6/23/2023 4:37:23 AM.
Order by is a useful feature in MySQL that allows you to sort query results based on one or more columns in ascending or descending order. In this article, we will discuss how to use order by in MySQL
Params Keyword in C#
6/16/2023 9:45:22 AM.
C# params. In this article, I explain how and what is the use of the params keyword in C#.
Method Overriding in C#
6/15/2023 10:14:57 AM.
Method overriding in C# is used to implement abstract or virtual methods. Learn how to c# override to implement method overriding in C#.
Learn About Functions In Python
6/8/2023 4:35:07 AM.
This article illustrates the use of functions in Python. We will learn about different types of arguments and functions in Python and their uses.
OOPS Concepts And .NET - Part Two - Inheritance, Abstraction And Polymorphism
6/6/2023 6:55:48 AM.
The following article is the second of a three-part article series that presents definitions and samples for different Object-Oriented Programming (OOP) concepts and its implementation in .NET
OOPS Concepts And .NET - Part One - Classes, Objects, And Structures
6/6/2023 6:50:13 AM.
The following article kicks off a three-part article series that will present definitions and samples for different Object-Oriented Programming concepts and its implementation in .NET.
Personalization Unleashed: Supercharge User Experiences with Azure Personalizer💥
5/24/2023 4:48:53 AM.
Discover the game-changing potential of Azure Personalizer! This powerful tool empowers developers to create personalized experiences that captivate and engage users like never before. By leveraging c
Native Keyword In Java
5/19/2023 4:57:43 AM.
In this article, you will learn Native Keyword in java
How to Add Security Headers to Your Website Using .htaccess
5/18/2023 5:25:17 AM.
Want to know how to add security headers to your website using .htaccess? Read this blog and add content security policy header in wordpress site.
What is Default Keyword in Java
5/11/2023 2:36:53 PM.
In this article, you will learn about What is Default Keyword in Java
What Is Short keyword In C#
5/10/2023 12:05:08 PM.
In this article, you will learn about What is Short Keyword in C#
How to Use Clear Keyword An Array in C#
5/10/2023 11:02:38 AM.
In this article, you will learn about what is a Clear Keyword an array in C#
Convert Word File to PDF Using C# dLL
5/3/2023 9:28:19 AM.
This article shows how to convert a Word file to a PDF using C#.
Simplifying Your C# Code: Why You Should Avoid Using 'Else' keyword
5/1/2023 4:01:42 AM.
In this article will be seeing the benefits of avoiding else keyword in C# programming.
Match in Rust
4/27/2023 1:06:48 AM.
match control flow in rust
This keyword in Java
4/25/2023 11:45:24 AM.
In this article, you will learn about This Keyword in Java
Generating Dynamic Documents From Existing Template
4/24/2023 6:42:14 AM.
Generating dynamic documents (PDF/WORD/EXCEL/POWERPOINT) from the existing template.
What is Abstract Keyword in java
4/22/2023 4:44:04 PM.
In this article, you will learn about What is abstract Keyword in Java
How to Remove An Element from An Array In C#
4/21/2023 11:31:08 AM.
In this article, you will learn about How to Remove An Element from An Array In C#?
Byte Keyword in Java
4/21/2023 6:56:50 AM.
In this article, you will learn Byte keyword in java.
Regular function vs Arrow function in JavaScript
4/20/2023 7:24:03 AM.
In this article, we will learn the difference between the regular function and the arrow function in JavaScript
How to remove duplicate words from string in C#
4/15/2023 4:04:48 AM.
This article covers all possible methods of removing duplicate words from string in C# with code examples and explanations.
Password Less Sign-In With The Microsoft Authenticator App
4/12/2023 10:29:09 AM.
In this article, you will learn about Password Less Sign-In With The Microsoft Authenticator App.
What Is Boolean Keyword In Java
4/10/2023 7:41:40 AM.
in this article, you will learn What is the boolean keyword in Java
How To Enable Password Writeback SSPR In On-Prem AD And Azure AD
3/28/2023 5:14:50 AM.
In this article, you will learn how to enable password writeback sspr in on-prem ad and azure ad.
Use Of Static Keyword In Java
3/27/2023 5:06:18 AM.
In this article, you will learn different use-cases of static keyword in java.
What is the purpose of the 'async' and 'await' keywords in JavaScript?
3/12/2023 6:53:52 PM.
Learn what the 'async' and 'await' keywords are in JavaScript and how to use them in async code.
Getting Started With Basic SQL Keywords And SQL Join
2/24/2023 6:29:40 AM.
In this article you will be learning about the basic keywords of the SQL Language.
Important Facts About MySQL Server
2/21/2023 11:17:57 AM.
In this article, we will learn some of the important facts about MySQL Server.
Usage and Importance of Using in C#
2/20/2023 5:00:07 AM.
This article explains the various ways to use the using keyword in C# and what its benefits are.
Virtual Method in C#
2/20/2023 1:27:08 AM.
C# virtual keyword is used to create a virtual method in C#. Learn how to use virtual methods in C#.
APPLY in SQL Server
2/17/2023 5:59:00 AM.
In this article, you will learn how to use the APPLY keyword in SQL Server.
When To Use Static Classes In C#
2/16/2023 3:17:07 PM.
The static modifier in C# declares a static member of a class. The static modifier can be used with classes, properties, methods, fields, operators, events, and constructors, but it cannot be used wit
Difference Between Var, Dynamic And Object type In C#
2/15/2023 10:32:19 AM.
In this article, I am going to explain var, dynamic, and object keywords in detail.
How To Create Password And Confirm Password Matching Validation In Angular
2/15/2023 10:30:48 AM.
In this article, you will learn how to create password and confirm password matching validation in angular.
Yield Keyword In C#
2/13/2023 5:32:32 AM.
In this article, we will learn about the Yield keyword in C#
Const, ReadOnly and Static Keywords in C#
2/12/2023 3:30:14 PM.
This article will explain some important points about the const, readonly and static keywords in C#.
Difference Between Const, ReadOnly and Static ReadOnly in C#
2/12/2023 2:50:53 PM.
Common keywords like Const, ReadOnly and Static ReadOnly are quite confusing. So today we will discuss these keywords and try to understand the difference between Const, ReadOnly and Static ReadOnly i
How To Generate Random Password In C#?
2/7/2023 4:45:07 AM.
The code snippet in this article is an example of how to generate random numbers and random strings and combine them to create a random password using C# and .NET Core.
How to Encrypt and Decrypt a Password
1/31/2023 6:03:32 AM.
How to Encrypt and Decrypt a Password using EncryptByPassPhrase and DecryptByPassPhrase.
Finding Duplicates Among Multiple Columns in SQL
12/28/2022 8:21:54 AM.
Here I show how to find duplicates and their frequency among multiple columns using the GROUP BY clause.
Email Yourself New Tweet With Specific Keyword Using Azure Logic App
12/21/2022 6:10:33 AM.
In this article, we are going to learn about how to Email yourself a new tweet with specific keywords Using Azure Logic App
SQL Keyword
12/13/2022 5:23:47 AM.
In this article we will learn about SQL Keyword
Using The New Required Keyword In .NET 7
12/1/2022 4:32:17 AM.
In this article, you will learn how to use the new required keyword in .NET 7.
Outlook Login Failed And Repeatedly Requested A Password In Office 365
11/23/2022 6:53:37 AM.
Many people, I've noticed, are unable to sign into their Outlook apps. One, in particular, is experiencing difficulties with Outlook and Office 365. They are confronted by "Connecting to: use
Fundamentals of C#
11/22/2022 10:16:13 AM.
This article defines the fundamentals of C# in detail.
Convert HTML to Word Then Word to PDF With C#
11/18/2022 6:02:10 AM.
This method does not convert HTML to PDF directly, but instead first converts HTML to Word then converts Word to PDF.
Generate Word Document Template Using Power Automate
11/15/2022 5:09:22 AM.
In this article am explaining how to Generate Word Document Template using Power Automate and am covering how to add repeating Table and Plain text content Controller.
Reverse Words In A String In C#
11/7/2022 6:24:29 AM.
Given a string s, reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.
How To Reset SA Password In SQL Server
10/31/2022 5:03:58 AM.
If you want to reset SA password in SQL Server, simply read this blog as we have mentioned simple manual method to reset forgotten System Administrator password.
Extract Text from Word Documents in Java
10/26/2022 8:56:51 AM.
This article will primarily focus on extracting text from Word documents in Java using Free Spire.Doc for Java.
Merge Multiple Word Files Into Single PDF
10/21/2022 5:56:30 AM.
In this article, you will see how to merge multiple word files into a single pdf using Itextsharp in c#.
Search A String Entire Database (SQL Server)
10/20/2022 7:34:08 AM.
Searching a string in all the tables available in the SQL Server database
Generate A Strongly Secured Encrypted PDF File Using PDFFileEcrypter
10/19/2022 5:35:48 AM.
The purpose of this article is to present an effective approach for strong encryption of PDF files using a password and a complicated algorithm.
How to Read Barcode in Word, Excel, PowerPoint or PDF Documents in Java
10/18/2022 8:41:40 AM.
In this article, you will learn how to read barcode from MS office documents and PDFs in Java by using Spire.Office for Java library.
Spelling Checker API In ASP.NET Core
10/10/2022 5:19:36 AM.
This article contains a sample application for spell checking
How To Add Custom Add-Ins To MS Word
10/7/2022 5:19:36 AM.
This article shows you how to add add-ins to word desktop.
Type Checking in C#
9/27/2022 8:36:56 AM.
In this article you will learn about type checking in C#.
How To Create Password And Confirm Password Matching Validation In ReactJS
9/13/2022 6:00:27 AM.
In this article, you will learn how to create Password and Confirm Password Matching Validation in ReactJS.
Working On Microsoft Word Content Using VSTO Add-In
9/13/2022 5:52:49 AM.
In this article, we will learn how to get contents of a word document runtime, and work on those documents and their contents, like scanning them, validating them.
How To Create Custom Ribbon In Microsoft Word Using VSTO Add-in
9/7/2022 5:42:56 AM.
This article demonstrates how we can utilize VSTO add-in to create custom ribbon in word, how to add custom buttons/actions in word and what can be done with these custom actions.
Difference Between Override and New Keyword Explained Step-by-Step
9/2/2022 9:38:28 AM.
This article explains a topic that is very commonly asked in interviews, and quite confusing. Let’s try to clarify it.
Save PDF and MS Word File in C#
8/22/2022 11:02:55 AM.
In this article I will tell you how to create a PDF file, Microsoft Word file and a text file from C# with a complete sample that uses these tools with C#.
Modern Authentication - Why passwords Are No Longer a Priority - Azure User Group Sweden
8/6/2022 4:50:47 AM.
In this session, you will learn how these new techniques provide additional protection and security for your cloud identities and demonstrate how to plan and architect a strong hybrid identity structu