TECHNOLOGIES
FORUMS
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
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Tural Suleymani(5)
Vijayaragavan S(4)
Raj Kumar(3)
Vishal Babuks(3)
Vijai Anand Ramalingam(3)
Ganesan C(3)
Vijay Yadav(2)
Jejji Arora(2)
Sanjay Kumar(2)
Ajay Kumar(2)
Jignesh Kumar(2)
Ziggy Rafiq(2)
Dhanapal Chandran(2)
Venkatasubbarao Polisetty(2)
Jaimin Shethiya(1)
Rasul Huseynov(1)
Keyur Pandya(1)
Chetan Sanghani(1)
Sreenath Kappoor(1)
Punar Dutt Rajput(1)
Ayush Gupta(1)
Praveen Kumar(1)
Arjit Soni(1)
Darshan Adakane(1)
Abhishek Tiwari(1)
Jithu Thomas(1)
Sanwar Ranwa(1)
Mohamed Shifan(1)
Gajendra Jangid(1)
Allam Purushotham(1)
Santosh Karanam(1)
Vikas Pawar(1)
Ziauddin Choudhary(1)
Adriancs (1)
Adam Stirtan(1)
Shaily Dubey(1)
Ramawatar Bhakar(1)
Ravikant Sahu(1)
Raj Bhatt(1)
Shubhankar Banerjee(1)
Jaimin Patel(1)
Ishika Tiwari(1)
Rijwan Ansari(1)
Arindam Dawn(1)
Mohamed Azarudeen Z(1)
Madhu Patel(1)
Mohit Mishra(1)
Simran Verma(1)
Ali Benchaaban(1)
Enrique Aguilar (1)
Abhishek Chadha(1)
Madhanmohan Devarajan(1)
Santosh Sarnobat(1)
Pasang Tamang(1)
Kaushik Dudhat(1)
Sumit Gupta(1)
Catcher Wong(1)
David Mccarter(1)
Gowtham Rajamanickam(1)
Shubham Jain(1)
Abhishek Singhal(1)
Rohol Amin(1)
Varun Setia(1)
Ojash Shrestha(1)
Aashina Arora(1)
Sangeetha S(1)
Kirtesh Shah(1)
Keerthi Raja(1)
Archie Vankar(1)
Jay Krishna Reddy (1)
Sagar Lad(1)
Ramakrishnan R(1)
Mahesh Chand(1)
George (1)
Kokul Jose(1)
Sandeep Mishra(1)
Audrey Teague(1)
Resources
No resource found
Content Negotiation in .NET Core Web API
Jul 11, 2024.
Content negotiation in REST APIs allows clients to specify their preferred response format (e.g., JSON or XML) using HTTP headers like Accept and Content-Type. ASP.NET Core Web API supports this with built-in JSON support and customizable formatters for XML and other formats.
SQL: Writing Efficient Queries
Jul 10, 2024.
Learn how to optimize SQL queries for better performance with our guide on "SQL: Writing Efficient Queries." Discover techniques for improving query speed, such as indexing strategies, query optimization tips, and best practices.
Understanding View Binding in Android
Jul 09, 2024.
View binding is a feature that makes it easier to write code that interacts with views. Once view binding is enabled in a module, it generates a binding class for each XML layout file present in that module. An instance of a binding class contains direct references to all views that have an ID in the corresponding layout.In most cases, view binding replaces findViewById
Understanding LINQ While Writing Your Own
Jul 03, 2024.
LINQ (Language-Integrated Query) in .NET offers a unified, declarative way to query diverse data sources like objects, databases, XML, and more. It simplifies data manipulation with methods like Where, Select, and GroupBy, supporting both query and method syntax.
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.
Copying Footers Between SharePoint Sites Using PnP PowerShell
Jun 24, 2024.
I've been extensively using SharePoint and the PnP PowerShell module, which simplifies tasks with easy command sets and detailed documentation. Notably, copying a footer between SharePoint sites is straightforward with PnP.
Effective User Story Writing in Agile Development
Jun 12, 2024.
User stories are essential in Agile development, helping teams understand requirements from the user's perspective. This article guides you in writing effective user stories by focusing on key elements such as user roles, actions, and benefits, along with tips on collaboration, simplicity, and prioritization.
Web API
Jun 11, 2024.
A Web API (Application Programming Interface) enables applications to communicate over the internet. Using protocols like HTTP and data formats such as JSON and XML, Web APIs facilitate interaction between different software systems.
How to Write Tests in Rust?
Jun 11, 2024.
Learn how to write effective tests in Rust to ensure your code is robust and error-free. This guide covers the basics of unit and integration tests, explores Rust's built-in testing framework, and provides practical examples.
Convert an Embedded Resource into an XML File in WPF C#
Jun 06, 2024.
When working with embedded resources in a WPF application, it is important to follow specific steps to guarantee that your resources are properly included in the assembly and can be accessed during runtime.
WADL vs WSDL: The Battle of Web Service Descriptors
May 30, 2024.
Explore the significance and evolution of WSDL and WADL in web service description. WSDL, tailored for SOAP-based services, contrasts with WADL, simpler and geared towards RESTful services. While WSDL enjoys broader adoption, WADL's simplicity attracts developers in REST contexts.
Top 5 Tips to Write Effective Resume
May 28, 2024.
A well-crafted resume is essential for software engineers looking to land their dream job. It's the first impression that a hiring manager will have of you, and it's important to make it count. In this article, we'll cover the key elements of an effective resume for software engineers.
HR Efficiency: Revolutionizing Policy Writing with Copilot AI
May 24, 2024.
Copilot, an AI tool by OpenAI, transforms policy writing for HR managers. It accelerates research, offers contextual guidance, ensures quality, allows customization, and saves time, revolutionizing HR policy creation.
How to write Clean code in C#?
May 06, 2024.
Writing clean code is important so that it makes reading code easier, helps us fix and update it faster, and ensures it works smoothly and reliably. Here we will look for few tips to write clean code.
How to write Unit Tests for SwiftUI Views?
Apr 18, 2024.
Learn the key practices for writing unit tests for SwiftUI views in iOS and macOS apps. This guide covers project setup, effective testing methods, and leveraging SwiftUI's testing framework. With code examples and best practices, ensure your views' reliability and maintainability through thorough unit testing.
Learn JSX and React Components
Apr 03, 2024.
A brief idea about the JSX and React Components.
.NET Internals: Writing .NET IL/MSIL Code
Mar 13, 2024.
Learn about .NET IL, the bridge language of the .NET runtime, compiling all high-level .NET languages into a single language. Write multi-language applications in .NET, gaining insights into program execution.
Creating Custom NuGet Packages in C#
Mar 10, 2024.
Learn how to create custom NuGet packages in C# with this step-by-step guide. Set up a project, add components, create a .nuspec file, package your project, and optionally publish to nuget.org.
Write Duplicate Virtual Nodes in a Component in Vue.js
Feb 28, 2024.
In Vue.js, maintaining clean and efficient components is crucial. This article explores various methods for rendering multiple instances of the same component or element, including v-for, computed properties, methods, and named slots.
Customize Your Office Installer Using Office Deployment Tools
Feb 28, 2024.
Customize your Microsoft Office installer effortlessly with Office Deployment Tools. Tailor settings, configurations, and deployment strategies to fit your organization's needs using command-line options and XML configuration for seamless setup.
How to Write Unit Test Case with Mocking Service in Angular
Feb 24, 2024.
Learn how to write unit tests with mocked services in Angular using Jasmine and TestBed. This step-by-step guide demonstrates creating a mock service and testing component behavior in isolation for better reliability.
D365 Data Retrieval: FetchXml, Paging Cookies, and PowerShell
Feb 20, 2024.
Prepare your PowerShell environment for Dynamics 365 with crucial commands: Install Microsoft.Xrm.Data.PowerShell module for interacting with Dynamics 365 data. Set execution policy to RemoteSigned for internet script execution.
Android Responsive Login Screen Design using Constraint Layout
Feb 16, 2024.
In this article, I going to explain how we can create a responsive Screen for different android Screens using Constraint Layout.
Visual Studio Feature: Convert JSON or XML to Classes
Jan 30, 2024.
In this article, I will demonstrate how to use the Visual Studio feature Paste JSON as Classes or XML as Classes. This feature was introduced in Visual Studio 2013. This compelling feature will help the developer convert JSON to a C# class or XML to a C# class.
Using XML Key-Value Pairs in C# as a Dictionary
Jan 30, 2024.
To represent key-value pairs in XML, you typically use elements and attributes. how to represent key-value pairs in XML using C#. It covers XML file creation, interface and enum implementation, and methods for getting and setting values in an XML file. The example includes a WPF application for interaction.
Record and Pattern Matching in C# 9
Jan 30, 2024.
Unlock the elegance of C# 9 with this article on Records and Pattern Matching. Learn how to craft concise and readable code using the simplicity of Records for immutable data structures and the enhanced control flow of Pattern Matching. Elevate your coding efficiency and clarity with these powerful features by Ziggy Rafiq.
High-Performance Apps Using C# Span<T>
Jan 29, 2024.
Often in application we come scenarios where we need to perform string manipulation operations. In such cases using string type take up huge memory as it is immutable. Instead Span can be used, which saves memory
DropDown List Using XML in ASP.Net C#
Jan 11, 2024.
The first dropdown, "ddldist," displays district names, and the second dropdown, "ddltaluka," displays taluka names based on the selected district. The C# code uses the Page_Load method to load district data on the initial page load. The ddldist_SelectedIndexChanged method handles the district selection, filtering, and populating of the taluka dropdown accordingly. The XML files "District.xml" and "Taluka.xml" store the district and taluka data, respectively.
Write the Data to Excel Template
Dec 29, 2023.
Learn the art of writing data into Excel templates in C# with this step-by-step guide. Create an ASPX page, use libraries like Newtonsoft.Json, and implement the Factory Pattern effortlessly.
How To Create and Trigger Schedulers in MuleSoft
Dec 27, 2023.
In this article, you will learn how to create and trigger Schedulers from the MuleSoft application.
How To Invoke SOAP Web Service in MuleSoft
Dec 24, 2023.
In this article, you will learn how to invoke SOAP Web Service from the MuleSoft application. SOAP (Simple Object Access Protocol) is a protocol for exchanging structured information in the implementation of web services. It is a messaging protocol that allows programs running on different operating systems to communicate with each other by using XML as the message format.
Writing a Simple C# Files Backup Solution for File Server
Nov 04, 2023.
An insight and an introduction of building a simple C# files backup program
Get XML element value Action in Desktop flow using Microsoft Power Automate
Nov 03, 2023.
Reading this article, you can learn how to Get XML element value in Desktop flow using Microsoft Power Automate.
Write XML to File Action in Desktop Flow using Microsoft Power Automate
Oct 31, 2023.
Reading this article, you can learn how to Write XML to file in Desktop flow using Microsoft Power Automate. Reading this article, you can learn how to Write XML to file in Desktop flow using Microsoft Power Automate.
Stop Writing Code During Interviews And Do This Instead
Oct 30, 2023.
The reality is we expect that you can code. It’s implied, its taught in schools to children, it’s integrated into video games like Roblox. Asking a professional software developer to write trivial coding problems like the Fibonacci sequence during an interview is no longer good enough. We can do better and here’s how.
Read XML From File Action in Desktop Flow using Microsoft Power Automate
Oct 30, 2023.
Reading this article, you can learn how to Read XML from file Action in Desktop flow using Microsoft Power Automate
How To Render Avatar Images From XML Data In Blazor?
Oct 11, 2023.
In this scenario, you'll need to read XML data, parse it, and then render avatar images inside a popup component in a Blazor application. This involves creating a data model, a service to handle XML parsing, and a component to display the avatars in the popup.
How to Write Secure Code in C#?
Sep 13, 2023.
Secure coding in C# is essential for safeguarding sensitive information and preventing security breaches. Follow these best practices to enhance your application's security. Protecting Your C# Applications from Security Vulnerabilities.
How to Write Your Own Discord Bot on .NET
Sep 13, 2023.
Learn how to create a Discord bot with .NET 6. Discover the steps to set up a bot, connect it to a server, and make it respond to commands like a pro.
How to Write an Article That Attracts More Viewers?
Sep 09, 2023.
This article will explain how you can write a better article that attracts more viewers.
Exploring the Diverse Flavors of LINQ with Examples
Aug 22, 2023.
LINQ is a powerful feature in modern programming languages like C# that allows developers to perform queries on different types of data sources using a consistent syntax. With LINQ, you can query and manipulate data without worrying about the underlying data source, whether it's an in-memory collection, a database, or XML
Smart Contract Deployment Made Easy with Hardhat
Aug 08, 2023.
Learn how to deploy smart contracts on Polygon using Hardhat. Harness the power of scalability and reliability in blockchain development.
Implementing AJAX for Editing Data and Updating the Database in ASP.NET MVC
Aug 07, 2023.
Implementing AJAX for editing data and updating the database in ASP.NET MVC allows you to enhance the user experience and responsiveness of your web application. AJAX (Asynchronous JavaScript and XML) enables seamless data retrieval and updates without requiring a full page reload, resulting in faster and more interactive user interactions.
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!
CMD Session action in Desktop flow using Microsoft Power Automate
Jun 21, 2023.
Reading this article, you can learn how to execute the windows commands, Using Open CMD session action, Read from CMD session, Write to CMD session action and Close CMD session action with Desktop flow in Microsoft Power Automate.
How we can Write Optimized Code in JavaScript
Jun 13, 2023.
In this article, we will see How we can write optimized code in JavaScript
GitHub Copilot - Your AI Pair To Write Code Faster and Efficiently
May 22, 2023.
GitHub Copilot is a new AI tool that helps developers to write code faster and better. Indeed, it is an AI coding partner that provides suggestions to your code and can write code based on description in natural language. This AI copilot model is built on a heavy GitHub code base and OpenAI collaboration, which is further backed by Microsoft.
Writing Platform-Specific Code with Angular
May 04, 2023.
This article explores how Angular allows developers to write platform-specific code by using platform-specific providers. It explains the concept of platform-specific code and how it can be useful when working with platform-specific APIs or services. The article also provides examples of how platform-specific code can be written in Angular and how to use platform-specific providers to achieve this
Create and Write CSV Files Using File Connector in MuleSoft
May 04, 2023.
In this article, you will learn how to create and write csv files using file connector in MuleSoft.
10 Common Mistakes to Avoid When Writing JavaScript Code😯😯
May 02, 2023.
10 Common Mistakes to Avoid When Writing JavaScript Code????
Tips For Writing Semantic Elements
Apr 28, 2023.
We have discussed how to use semantic tags very carefully with examples.
Working with Files in Python: Reading, Writing and Appending
Apr 18, 2023.
Working with Files in Python: Reading, Writing and Appending
HTML Vs XML - Whats The Difference?
Apr 06, 2023.
In this article, you will learn about HTML vs XML.
Include XML Comments In Swagger under ASP.NET Core 2.2
Mar 22, 2023.
In this article, you will learn how to include XML Comments in Swagger under ASP.NET Core 2.2.
Multiple Views And Access To XML Files With .NET For iOS
Mar 21, 2023.
You will learn how to build an iPhone app using multiple views, recording, and extract data of XML files, using .NET for iOS and the XCode Interface Builder.
How To Write Resilient Code Using Polly In .NET 6
Mar 17, 2023.
In this article, you will learn how to write resilient code using polly in .Net 6.
Tips To Write Less JavaScript
Mar 13, 2023.
This article describes the tips to write less in javascript.
How To Read And Write Data From Dynamics 365 F & O Using API From Power Automate Flow?
Mar 10, 2023.
This article shows how to read and write data from Dynamics 365 F & O using API from Power Automate Flow
How To Write Custom Functions In Node-Red
Mar 10, 2023.
In this article, you will learn how to write custom functions in node-red and transform the incoming payload.
XML Serialization in practice: Preparing The Central Bank Service
Feb 17, 2023.
Learn XML serialization in practice. In the second part of our article, we will get acquainted with XML serialization and look at the use of the Central Bank's XML service in real practice.
Create Lookup Field In Existing SharePoint List Using REST API Schema XML
Feb 06, 2023.
In this article, we will learn how to create lookup field in existing SharePoint list using REST API and schema XML. The REST API enables us to communicate with SharePoint using standard HTTP methods, such as GET, POST, PUT, and DELETE. The API provides access to various SharePoint entities including lists, libraries, and sites, allowing us to retrieve data, create and update lists, fields, items, upload files and manage user permissions.
Using XML Comments As Web API Documentation With Swagger
Jan 18, 2023.
This article demonstrage how to use C# XML Comments as a Web API documentation with Swagger.
Writing Tests Using Postman Tool
Jan 02, 2023.
In this article, you will learn how to write tests using Postman Tool.
Convert XML Files Data To List Of Object
Nov 13, 2022.
In this blog, we learn how to get all XML files from a specific location and convert it's data into the C# object.
How To Read And Write To Microsoft SQL Using Python REST API
Nov 07, 2022.
In this article, you will learn how to read Microsoft SQL table, insert the results to another SQL table using Python REST API.
Writing Tests In Playwright Test Automation Project
Oct 18, 2022.
In this article, you will learn how to write tests in playwright Test Automation Project.
Extension For Writing Mocha Tests In Visual Studio Code
Oct 04, 2022.
In this article, we will discuss how to add a useful visual studio code extension that will speed up writing test cases.
Improving The Fetch XML Performance In Dynamics CRM
Sep 20, 2022.
The articles shares the information and steps to improvise the performance of FetchXML query in DataVerse
Write Unit Tests For Database Related Business Code
Aug 21, 2022.
This article introduce some ways to write unit tests for database related business code.
Elegant JavaScript - How Do They Write It?
Aug 08, 2022.
In this article, you will learn about Elegant JavaScript.
JavaScript In Practice - Let's Write Own Form Validator
Aug 08, 2022.
In this article, you will learn Javascript in practice.
Rock Your Code: XML Documentation Of Code For Microsoft .NET
Jul 27, 2022.
In this article, you will learn about XML Documentation of code for Microsoft .NET.
XML Shredding In T-SQL
Jul 19, 2022.
In this article, you will learn about XML shredding in T-SQL.
How To Create A PowerApps Portals (Website) Without Writing Code
May 30, 2022.
In this article, you will learn how to Create a PowerApps Portals (Website) without writing code.
How To Handle Files Through Python
May 16, 2022.
Nowadays python has emerged as a totally famous and effective language due to its excellent overall performance and huge variety of features by which we are able to use Python in various fields inclusive of gadget studying, picture processing, web designing, 3-D objects, GUI based computer packages, medical computation, video games, OS, making another language and community programming.
String.XML In Android
May 09, 2022.
In this article, you will learn about String.XML in Android.
Using For XML Clause In SQL Queries
May 05, 2022.
For XML clause is used to convert the SQL result set into XML format. It is a very much helpful clause when we need XML data from the SQL result set. The FOR XML clause can be used in top-level queries and in subqueries. The top-level FOR XML clause can be used only in the SELECT statement. In sub queries, FOR XML can be used in the INSERT, UPDATE, and DELETE statements. 
Retrieve Data Using FetchXMLWebAPI With Webresource In Dynamics CRM
Apr 07, 2022.
In Dynamics 365 CRM, for certain requirements data needs to be retrieved to achieve business functionality. As an example, all contact records whose first name starts with V taken for explanation.
Writing Efficient Unit Test Cases with Moq and Bogus
Mar 21, 2022.
Writing Efficient Unit Test Cases with Moq and Bogus.
Azure Machine Learning - Writing Python Script In Notebook
Mar 16, 2022.
In this article, we'll learn about Azure ML.
Convert JSON And XML Object Into Class Using Visual Studio
Jan 11, 2022.
In this article, we are going to explore about how to convert a JSON/XML object into the classes using Visual Studio.
How To Write Logs To Amazon CloudWatch Using NLog In .NET 6 Web API
Jan 11, 2022.
In this article, you will learn how to write logs to Amazon CloudWatch using NLog in .NET 6 Web API.
How To Write Logs To Amazon CloudWatch Using Serilog In .NET 6 Web API
Jan 08, 2022.
How to write logs to Amazon CloudWatch using Serilog in .NET 6 Web API
Working With CSV In Python
Dec 16, 2021.
In this article, you will learn about CSV In Python.
Write And Append Data In JSON File Using PHP
Dec 03, 2021.
In this article will explain how to write and append a data in json file while on submitting a form. Here using few PHP function we are going to add a date in json format.
FOR XML In SQL Sever
Dec 02, 2021.
In this article, we are going to discuss FOR XML Path Clause in SQL Server.
Insight.Database , .NET Micro ORM - Write Less Code In Data Access Layer Using Auto Interface Implementation
Nov 07, 2021.
In this article, you will learn about Insight.Database is a fast, lightweight, (and dare we say awesome) micro-orm for .NET. Auto Interface Implementation implements the interface for you automatically, and you can just call the method, with full type-safety and full performance of IL-generated code.
Usage Of XML Function In Power Automate
Oct 28, 2021.
In Power Automate, at times we must work on strings which have XML values. We can use XML function in power automate to convert string value to XML and perform related operations. As an example, notification xml string is used here to send notification to required person.
What Are The Key Features For Editing In Writing
Oct 07, 2021.
In this article, you wil learn what are the key features for editing in writing.
How To Write Unit Test For Exception And Console Log In C#
Oct 01, 2021.
In this article, we are going to explore about how to write unit test for exception and console log in C#.
How To Mock And Write Unit Test For API Calls In The React Application
Sep 07, 2021.
In this article, you are going to learn about how to mock API calls and write unit test for API call using fetch-mock in React application.
Implement Read/Write Operations Using CQRS And Dapper In ASP.NET Core - Detailed
Aug 20, 2021.
In this article, you will learn how to implement Read/Write Operations using CQRS and Dapper in ASP.NET Core.
Best Practices Of Writing Python Code
Aug 04, 2021.
In this article, we are going to discuss about coding standards with python using PEP8 style guide.
Get XML Data From SP Library And Upload To SP List - JavaScript
Jul 03, 2021.
In this article, you will learn how to get XML Data from SharePoint Library & Upload to SharePoint List - JavaScript REST API.
Write Your First Smart Contract On Stratis Blockchain
Jun 02, 2021.
In this article, you will learn how to write your first smart contract on Stratis Blockchain.
Forms Authentication (A), Using XML
May 03, 2021.
This article discuss Forms Authentication by using XML
Export Data In EXCEL, PDF, CSV, Word, JSON, XML And Text File In .NET Core 3.1 Using MVC Core
Apr 12, 2021.
This article demonstrates how to export functionality with different types of file formats like excel, pdf, word, csv, json, xml and text files using a .net core 3.1 application. I have implemented the most frequently used file format to export data in real time projects.
Write And Read Pandas Dataframe And CSV To And From Azure Storage Table
Dec 23, 2020.
This tutorial focuses on integrating Pandas with Azure Storage Table, enabling writing and reading DataFrames to and from CSV files stored in Azure Storage. It covers data transfer between local environments and Azure, facilitating efficient data management and analysis workflows.
Learn About AJAX Security
Dec 15, 2020.
Explore the swift and interactive technology of AJAX in web development, its implementation using JavaScript, XML, and HTML, and its security vulnerabilities such as session management flaws, CSRF, and XSS attacks. Learn how to secure AJAX applications effectively for robust web security.
How to Write a Professional Resume?
Nov 16, 2020.
A good resume needs to be effective in portraying who you are to recruiters. Making sure it looks clean, consistent, and easy to read is the most important part of writing a professional resume.
About write-XML
NA
OUR TRAINING