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)
Vignesh Kumar(2)
Kautilya Utkarsh(2)
Mushtaq M A(2)
Ziggy Rafiq(2)
Vinod Kumar(2)
Scott Lysle(2)
Ananya Desai(1)
Sandhiya Priya(1)
Saurabh Prajapati(1)
Sardar Mudassar Ali Khan (1)
Mariusz Postol(1)
Jalpa Dhola(1)
Vijay Yadav(1)
Jitendra Mesavaniya(1)
Jaimin Shethiya(1)
Kunal Patil(1)
Ankeet Dange(1)
Thiyagu Baskaran(1)
Jefferson S. Motta(1)
Keyur (1)
David Mccarter(1)
Dhanapal Chandran(1)
Edinbiro James(1)
Frank Odoom(1)
Venkatasubbarao Polisetty(1)
Sanjay Makwana(1)
Habibur Rony(1)
Dhruvin Shah(1)
Shashangka Shekhar(1)
Nikunj Satasiya(1)
Guest User(1)
Santosh Kumar Adidawarpu(1)
Ajay Yadav(1)
Mudita Rathore(1)
Sharad Gupta(1)
Abhimanyu K Vatsa(1)
Vishal Nayan(1)
C# Curator(1)
senthil kumar Lakshmanan(1)
Sushmita Kumari(1)
John Godel(1)
Andriy Zolitoiy(1)
S.R.Ramadurai, K.Sreenivasan(1)
Levent Camlibel(1)
Resources
No resource found
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.
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.
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.
Automating the Export and Import of Power Automate Solutions
Sep 02, 2024.
Streamline the process of exporting and importing Power Automate solutions by automating workflows. This automation reduces manual effort, ensures consistency, and minimizes errors in solution management. It enables efficient backups, recovery, and smooth transitions across environments.
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.
How to Convert varbinary to Base64 String in SQL Server
Jul 03, 2024.
Learn how to convert varbinary data to Base64 strings in SQL Server using XML functions and the CAST method. This tutorial provides clear steps and SQL examples for encoding binary data, crucial for web applications needing text-based transmission of images and files.
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.
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.
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.
Convert Attachment to Base64 in Power Apps for Email Attachments
Mar 27, 2024.
Convert attachment files into Base64 strings in Power Apps. Use Power Automate to trigger email creation, dynamically attaching the Base64-encoded files. Streamline workflow, automating attachment handling and email sending seamlessly.
.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.
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.
Base64 Extensions
Jan 23, 2024.
Discover C# extensions simplifying Base64 string operations. Learn about Base64 encoding, its applications, and limitations. Explore the provided code samples for efficient usage in your projects.
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.
Converting Strings in C#: JSON, Base64, XML, CSV and Reverse
Jul 19, 2023.
Discover Ziggy Rafiq's comprehensive guide on converting strings to JSON, Base64, XML, and CSV formats using C#. Plus, learn how to reverse the process effortlessly. Don't miss out on this must-read article!
Converting Image To Base64 In Python
Mar 16, 2023.
In this article, you will learn how to convert image to base64 in python.
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
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.
Read SharePoint List Item Attachment (image) and Convert Into Base64 String Using CSOM Through App Only Authentication
Apr 09, 2020.
This article will help you to fetch SharePoint list items and convert it to base64 string.
Implementing CQRS Pattern with Vue.js and ASP.NET Core MVC
Mar 16, 2020.
This article mainly focuses on the CQRS pattern, how we can implement CQRS Pattern using MediatR, and how to use the CQRS pattern with ASP.NET MVC Core and Vue.Js.
Convert SharePoint Library Images to Base 64 with Microsoft Flow
Dec 01, 2019.
In this article, we will talk about how we can easily convert SharePoint Document library Images to Base 64 and store the value of the Base 64 Images to SharePoint’s Multiline textbox.
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.
Loading Base64 Images In Xamarin.Forms
Jan 30, 2018.
In this article, we will learn to load Base64 String Images into Images in Xamarin.Forms without using any External Plugins like FFMpeg Image Loader Plugin.
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.
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.
SQL Injection With Base64 And Its Prevention Mechanism
Jul 04, 2016.
In this article, you will learn about SQL injection with Base64 and its prevention mechanism.
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.
HTML Encoding in MVC
Dec 23, 2012.
In this quick article you will learn about HTML Encoding in MVC.
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.
String Encoding/Decoding and Conversions in C#
Feb 02, 2010.
In this article, I will explain C# String Encoding/Decoding and Conversions in C#.
XML-Binary BASE64 image slideshow using ASP. NET - AJAX
Mar 05, 2008.
This article would illustrate how to create and use HTTPHandler in ashx file, XML binary base64 to change image format, using Asp.net / Ajax. This primarily aims to have a slide show which displays many user profiles and photos.
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.