C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand(4)
Kautilya Utkarsh(2)
Vignesh Kumar(2)
Vinod Kumar(2)
Scott Lysle(2)
Thiyagu Baskaran(1)
Edinbiro James(1)
Guest User(1)
Abhimanyu K Vatsa(1)
Saurabh Prajapati(1)
Kunal Patil(1)
C# Curator(1)
Ananya Desai(1)
Sandhiya Priya(1)
Sardar Mudassar Ali Khan (1)
Mariusz Postol(1)
Jitendra Mesavaniya(1)
Jaimin Shethiya(1)
Mushtaq M A(1)
Keyur (1)
Ziggy Rafiq(1)
David Mccarter(1)
Frank Odoom(1)
Venkatasubbarao Polisetty(1)
Shashangka Shekhar(1)
Nikunj Satasiya(1)
Ajay Yadav(1)
Mudita Rathore(1)
Sharad Gupta(1)
Vishal Nayan(1)
Sushmita Kumari(1)
John Godel(1)
Andriy Zolitoiy(1)
S.R.Ramadurai, K.Sreenivasan(1)
Levent Camlibel(1)
Resources
No resource found
Ordinal & Label Encoding in Machine Learning
May 10, 2024.
Categorical variables in machine learning require numerical conversion. Ordinal Encoding orders data, while Label Encoding assigns unique values. Python code demonstrates encoding techniques for effective model training.
Web Developers' Guide to URL Encoding and Decoding Mastery
Mar 03, 2024.
URL encoding and decoding are fundamental processes in web development, ensuring the secure and reliable transmission of data over the internet. We will explore the essentials of both URL encoding and decoding, their necessity, rules, examples, and how they are implemented in various programming languages.
A Beginner's Guide To One-Hot Encoding Using Pandas' get_dummies Method
Feb 13, 2023.
In this article we'll learn about One-Hot Encoding using Pandas "get_dummies" Method
Microsoft Azure – Uploading Files Into Azure Media Services And Encoding Them
Dec 19, 2016.
Here, you will learn how to upload files into Azure Media Services and encoding them.
HTML Encoding in MVC
Dec 23, 2012.
In this quick article you will learn about HTML Encoding in MVC.
Encoding of Variable in Machine Learning
Apr 18, 2025.
How to transform categorical values into continuous form, and what is encoding? Encoding categorical data is vital for machine learning. Techniques like Label Encoding and OneHotEncoder convert non-numeric values into numerical form.
Demystifying One-Hot Encoding
May 09, 2024.
One-hot encoding transforms categorical variables into a binary representation, aiding machine learning models. Implemented in Python, it expands data dimensions, enhancing model performance and accuracy.
Implementation of Base64 Encoding/Decoding in Power App
Apr 05, 2024.
Base64 is a method for encoding binary data into text, ensuring data integrity during transmission. Implemented in Power Apps using Power Fx, it's vital for tasks like email (MIME), XML, or JSON data storage. Not suitable for encryption, but essential for safe data transmission.
String Encoding/Decoding and Conversions in C#
Feb 02, 2010.
In this article, I will explain C# String Encoding/Decoding and Conversions in C#.
Feature Engineering in Machine Learning: Techniques and Examples
Jun 03, 2026.
Learn Feature Engineering in Machine Learning with practical examples. Explore feature creation, transformation, selection, encoding, scaling, and best practices.
How to Create, Encode, and Test a JWT Using Postman
Feb 13, 2026.
Learn how to create, encode, and test JWTs using JWT.io and Postman. Secure your APIs by mastering JWT generation, validation, and troubleshooting techniques.
What Is Tokenization? The Most Comprehensive Guide for NLP and AI
Dec 10, 2025.
Tokenization is the process of breaking text into smaller meaningful units called tokens. This complete guide explains what tokenization is, how it works in NLP and LLMs, types of tokenizers, examples, challenges, advanced subword algorithms and modern AI applications in 2025.
Download Multiple Excel Files via Web API .NET and Angular
Sep 20, 2024.
To export multiple Excel files, various approaches can be used, including downloading a zip file, creating multiple worksheets in a single Excel file, or calling APIs multiple times to retrieve files. Another method involves using Base64 strings, though it's less efficient due to increased file size.
Preventing XSS Attacks in ASP.NET Core Web API
Sep 08, 2024.
Cross-site scripting (XSS) is a common web application vulnerability where malicious scripts are injected and executed in a user's browser. To prevent XSS in ASP.NET Core Web APIs, techniques like input validation, output encoding, and sanitizing user input can safeguard against potential attacks.
Programming in Practice - File Concept
Sep 04, 2024.
The external data is recognized as the data we must pull or push from outside of a boundary of the process hosting the computer program. The article addresses selected examples related to steaming data from a program context point of view.
Encryption and Decryption using AES (Symmetric) in Angular
Aug 30, 2024.
AES (Advanced Encryption Standard) is a symmetric encryption algorithm used for secure data transmission. Implement AES in Angular using the crypto-js library, supporting modes like CBC, ECB, and CTR, with various padding options. Encrypt and decrypt data securely using UTF-8 keys and initialization vectors.
Additional Tokenizer Support in ML.NET
Jun 03, 2024.
Tokenization is a fundamental component in the preprocessing of natural language text for AI models. Tokenizers are responsible for breaking down a string of text into smaller, often referred to as tokens. The process is crucial for understanding costs and managing context when using services like Azure OpenAI.
Encrypt Decrypt Data with Sqids in .NET Core
May 23, 2024.
Sqids is a helpful tool for obscuring numbers, such as consecutive numeric IDs, so they appear random and can be used in URLs and other contexts.
.NET MAUI - Base64 Image Encode/Decode
Mar 09, 2024.
This blog guides 10th-grade students through incorporating Base64-encoded images in .NET MAUI apps. Covering project setup, implementation steps, and a demo, it empowers users to enhance app visuals seamlessly.
Encode and Decode JWTs in C#
Dec 14, 2023.
Delve into the world of JSON Web Tokens (JWTs) with this comprehensive guide in C#. Learn to encode, decode, and work with JWT claims, emphasizing best practices for secure implementation.
C# Security: Best Practices for Secure Coding
Aug 31, 2023.
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 prevent injection attacks, using parameterized SQL queries, using cryptography to protect sensitive data, using HTTPS to protect data in transit, avoiding hardcoding secrets in code, and keeping code up to date with the latest security patches and updates.
Real World Coding Issues - Design, Diagnostics and Other Common Code Issues
Aug 01, 2023.
In this article, I will discuss common coding issues that I frequently encounter in the projects I work on. These issues fall into the "Design" and “Diagnostics” category of code analyzers.
Convert Image To Lossy And Lossless .webp Format In .NET
May 25, 2022.
This article demonstrates how to programmatically convert image to .webp.
Usage Of Encode URI In Power Automate
Aug 02, 2021.
In Power Automate, to return a uniform resource identifier (URI) encoded version for a string by replacing URL-unsafe characters with escape characters we can use either encodeUriComponent or uriComponent functions in expressions.
C# StreamReader Code Examples
Jun 15, 2019.
C# StreamReader is used to read characters to a stream in a specified encoding. Learn how to use C# stream reader. C# StreamReader code example.
How to Convert String To Byte Array in C#
Jun 03, 2019.
The Encoding.GetBytes() method converts a string into a byte array in C#. This article includes a code example of how to convert a C# string into a byte array.
Braintree Payment Gateway Integration With ASP.NET Core 2.1
Aug 20, 2018.
Integrate Braintree payment gateway with ASP.NET Core 2.1 by adding the Braintree .NET Client Library via NuGet. Configure the gateway using environment variables or default credentials. Implement endpoints to generate client tokens and process transactions.
An Easy Way To Encode And Decode File In ASP.NET
Oct 13, 2017.
In this article, I’ll explain a way to encode and decode a file in ASP.NET using C# and VB.NET with example.
Vulnerable Encoded URLs
Nov 22, 2014.
In this article, we have pinpointed the vulnerability in query string parameters while encoding them by practicing weak cryptography methods where the data is sent across the network in clear text and is susceptible to MITM attack.
Various Ways For Passing Data to View in Web API
Oct 04, 2013.
Explore various methods for passing data to views in Web API. Techniques include using ViewModels, data transfer objects, and JSON serialization. Utilize query parameters, route parameters, and request bodies for data binding.
XML Parser Function in PHP: Part 1
Jun 05, 2013.
This article describes the PHP XML Parser functions utf8_decode, utf8_encode, xml_error_string, xml_get_current_byte_index and xml_get_current_column_number.
Verify XML Names Using C#
May 27, 2013.
The XML specification does not allow some characters to be a part of valid XML names. We can use the XMLConvert class and its methods to verify, encode and decode names.
Using JSON in PHP
May 14, 2013.
In this article I will will explain Using JSON in PHP.
Sending Data to Ajax Using PHP
May 13, 2013.
In this article I explain how to send data to Ajax using PHP.
Build a simple Watermarking utility in VB.NET
Nov 08, 2012.
This article shall describe an approach to building a simple watermarking utility that may be used to add watermarks to any supported image file format. The resulting application shall permit the user to open any supported image file format into a scrollable picture box.
Hour 2: Understanding 5 ASP.NET State Management Techniques in 5 Hours
Apr 28, 2011.
In a simple way see understanding 5 ASP.NET state management techniques in 5 hours.
Build a Simple Watermarking Utility in C#
May 07, 2007.
This article shall describe an approach to building a simple watermarking utility that may be used to add watermarks to any supported image file format. The resulting application shall permit the user to open any supported image file format into a scrollable picture box.
Delay Signing an Assembly
Jan 18, 2006.
In this article we will elaborate the terminology Delay Signing as well as what it means. How it works and the approach to achieve it.
SOAP, .NET, and COM an Introduction - Part III
Feb 02, 2004.
This article starts with the basics of SOAP, SOAP XML model and its data types followed by the integration of SOAP functionality in .NET class library and how .NET developers can take advantages of SOAP in their applications.
SMTP Internationalization
Jul 16, 2003.
You can find many articles dedicated to C# SMTP implementation on this or other sites.
SOAP Message with Binary Attachments
Feb 28, 2002.
Recently Microsoft announced new format called DIME: Sending Binary Data with Your SOAP Messages.
Email Notifier with Microsoft Agent--- GENIE
Nov 16, 2001.
Email notifier with Microsoft Agent is a TCP/IP application that notifies the user if there is email in the user's email server.