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(12)
John Godel(7)
Lajapathy Arun(5)
Sandhiya Priya(4)
Gopi Chand(3)
Destin Joy(3)
Manpreet Singh(3)
Riya Patel(2)
Rohit Gupta(2)
Mominul Islam(2)
Jean Paul(2)
Diptimaya Patra(2)
Vijai Anand Ramalingam(2)
Niharika Gupta(1)
Virendra Kumar(1)
Tuhin Paul(1)
Sriganapathi Sekar(1)
Baibhav Kumar(1)
Saurav Kumar(1)
Sardar Mudassar Ali Khan (1)
Aakash Chhillar(1)
Nitin Pandit(1)
Sangeetha S(1)
Archie Vankar(1)
Vinodh Kumar(1)
Nitin (1)
Mohammad Irshad(1)
Muthu Kumar(1)
Rion Williams(1)
Kasam Shaikh(1)
Rahul Sahay(1)
Rakesh (1)
Saad Mahmood(1)
Satendra Singh Bhati(1)
Anurag Sarkar(1)
Sachin Bhardwaj(1)
Gaurav Gupta(1)
Sonia Bhadouria Vishvkarma(1)
Bryian Tan(1)
Deepak Dwij(1)
Petar Minev(1)
Marcus (1)
Abhimanyu K Vatsa(1)
VIMAL LAKHERA(1)
Amira Bedhiafi(1)
Rajesh Gami(1)
Mervyn Manilall(1)
Ramon Smith(1)
Chris Love(1)
George (1)
Arvind Kushwaha(1)
Saravanan Ponnusamy(1)
Prashant Bansal(1)
Priyaranjan K S(1)
Sagar Pardeshi(1)
Ashwani Tyagi(1)
Mahak Gupta(1)
Manish Singh(1)
Dinesh Beniwal(1)
Scott Lysle(1)
Sanjay Ahuja(1)
Raghunath Bhukan(1)
Avnii Thakur(1)
Vergin Sweety A(1)
Resources
No resource found
Shortest Path in 1-2 Graph – Complete Explanation (Java)
Jul 28, 2026.
Find the shortest path in a 1-2 weighted graph efficiently using BFS after transforming weight-2 edges.
Longest Consecutive Path in Binary Tree (Java)
Jul 24, 2026.
Find the longest consecutive path in a binary tree where child nodes are exactly 1 greater than their parent. Uses DFS.
Maximum Sum Path in Two Sorted Arrays (Java)
Jul 06, 2026.
Find the maximum sum path in two sorted arrays with distinct integers, allowing switches at common elements.
What is Critical Rendering Path and How to Optimize It for Faster Page Load?
Apr 21, 2026.
Learn what Critical Rendering Path is and how to optimize it step by step for faster page load, better SEO, and improved web performance.
Platform Engineering vs DevOps: Which Career Path Has Better Growth?
Mar 27, 2026.
Explore DevOps vs. Platform Engineering: skills, salary, and career growth. Discover which path offers better long-term opportunities in the evolving tech landscape.
Levels of AGI: What They Are and How to Understand the Path from Emerging AI to Superhuman Systems
Mar 24, 2026.
Learn what the levels of AGI are and how to use them to understand the path from narrow AI and emerging AGI to expert, exceptional, and superhuman systems.
What Is a Derivation Path and Why Does It Matter in Crypto Wallets?
Dec 30, 2025.
Unlock the mystery of crypto wallet derivation paths! Learn how they generate addresses from your recovery phrase and why matching them is crucial for successful restores. Avoid 'missing funds' panic!
Confused About SharePoint Online File Path Limits? Here’s What You Should Really Count
Dec 10, 2025.
SharePoint Online’s file path limits are often misunderstood. This article breaks down what actually counts toward the 400?character limit, clears up common myths, and shows practical ways to count length. Whether you’re an admin or end user, you’ll learn how to manage paths effectively and keep your files accessible.
Enterprise-Grade Path Parsing in Python: Securely Extracting Filename, Extension, and Directory in Cloud Systems
Nov 30, 2025.
Securely parse file paths in Python for enterprise cloud systems. Extract filename, extension, and directory using pathlib. Prevent path traversal and data leaks.
Python - File Path Handling Methods
Nov 17, 2025.
Master Python file path handling with the 'os' and 'pathlib' modules. Learn to create directories, join paths, check file existence, and extract file information. Ensure cross-platform compatibility!
What is Graph Algorithms: BFS, DFS, and Shortest Path with Examples
Oct 12, 2025.
Explore graph algorithms like BFS, DFS, and Dijkstra's for efficient problem-solving. Learn how BFS finds shortest paths in unweighted graphs, DFS excels in cycle detection, and Dijkstra's optimizes routes in weighted graphs. Discover real-world applications in navigation, social networks, and AI, mastering essential tools for connectivity, optimization, and exploration in computer science. These algorithms are crucial for developers tackling complex challenges.
Generative AI: Gödel’s AgentOS - The Cognitive Revolution on the Path to Awareness and Conscious Control in AI
Oct 05, 2025.
Gödel's AgentOS pioneers a new era of AI: governed cognition. This framework moves beyond reactive AI to self-aware systems capable of introspection, ethical reasoning, and responsible decision-making. By integrating governance, meta-reflection, and awareness, AgentOS aims to create AI that understands the implications of its own thoughts, fostering accountability and trust. It's a cognitive revolution towards conscious AI.
How to Find the Longest Increasing Path in a Matrix?
Oct 03, 2025.
Master the Longest Increasing Path problem in a matrix! This guide explores efficient solutions using DFS with memoization and Topological BFS (Kahn's Algorithm). Learn how to optimize pathfinding, understand time and space complexity, and avoid common pitfalls. Discover real-world applications in games, data science, and image processing. Ace your coding interviews with these powerful techniques!
What Algorithm Finds the Shortest Path in a Grid with Obstacles?
Oct 01, 2025.
Explore algorithms for finding the shortest path in grids with obstacles, crucial for AI, robotics, and game development. Learn about BFS, A*, Dijkstra's, and Greedy Best-First Search, understanding their strengths, weaknesses, and real-world applications like GPS navigation and robotics. Discover which algorithm suits your specific needs for efficient pathfinding.
Preventing Path Traversal and Directory Browsing Attacks in ASP.NET Core
Sep 08, 2025.
Protect your ASP.NET Core applications from path traversal and directory browsing attacks! Learn practical mitigation strategies, including disabling directory browsing, sanitizing file paths with Path.GetFileName, restricting upload directories, validating file types, and applying the principle of least privilege. Secure your web applications and prevent unauthorized access to sensitive files by implementing these essential security measures. Harden your web.config and monitor logs for suspicious activity.
JavaScript Learning Path (0 → Hero in 10 Chapters) | Learn JavaScript from Basics to Advanced
Aug 19, 2025.
Learn JavaScript from zero to advanced with this complete guide. Covers variables, data types, functions, loops, DOM, events, async JS, ES6+, OOP, browser APIs, and hands-on projects for real-world web development.
Master C# from Basics to Advanced | Complete C# Learning Path with Algorithms & Real-World Skills
Aug 17, 2025.
Learn C# step by step! From basics to advanced concepts with 20+ algorithms, OOP, LINQ, async, desktop & web app development.
Programming in C# – A Guided Path from Beginner to Intermediate
Apr 14, 2025.
Let’s dive into C# by doing what developers do best—writing code. As you go through this article, don’t worry if something doesn’t click right away.
Rethinking Artificial Superintelligence: A Path to Collaborative Evolution
Apr 03, 2025.
I wrote this article to challenge the dominant fear-based narrative around Artificial Superintelligence. Instead of control, I explore how humans and ASI can collaborate, co-evolve, and build shared intelligence systems that amplify human potential.
How to Set Up the Java Path on Windows
Dec 27, 2024.
The topic "How to Set Up the Java Path on Windows" covers the essential steps needed to configure your system so that Java commands can be run from anywhere in the command line.
Exploring Product Management: Career Path and Key Skills
Oct 11, 2024.
This article explores key skills such as market research, roadmap planning, stakeholder management, and leadership that are essential for becoming a successful product manager and advancing in the field.
Getting File Path From Appsettings.json In Worker Service
Mar 24, 2023.
Getting file path from appsettings.json in Worker Service.
How To Become A Python Developer - A Learning Path To Your Career In Python
May 23, 2022.
Let's take a dive and understand the approach towards the Python world!!
How To Add/Edit Path Environment Variable In Windows 11
Feb 21, 2022.
In this article, I will let you know about ways by which you can add or edit the path environment variable in windows 11.
Extract File Names And Copy From Source Path In Azure Data Factory
Jan 15, 2022.
We will learn a real-time scenario on how to extract the file names from a source path and then use them for any subsequent activity based on its output.
Object Follow A Path Using C# Scripts In Unity
Jun 18, 2020.
In this article, you will learn how to make an object follow a path using C# scripts in Unity.
Add A Directory To A PATH Environment Variable On Windows 10
Feb 25, 2019.
Learn how to add a directory to the Windows 10 PATH environment variable.
Overview Of Wildcard Routing And Path Matching In Angular
Nov 21, 2018.
In any Angular application, we use routing to navigate from one view to another. What happens if we don’t define a certain route and we try to navigate to that route? Well, the Angular application will throw an error.
How To Save An Image To A Specific Path In Ionic 3 Using Native Camera Plugin
Aug 23, 2018.
In this article demonstrates how to take picture in camera and save a picture specific path in ionic 3 using native camera plugin. The following tools and requirements should prepare before starting this article.
The Path Is Null And Full Of Squiggles
Apr 06, 2017.
The Path is Null and Full of Squiggles.
Learning Path For Visual Studio Tools For Office (VSTO) Programming
Nov 06, 2016.
A simple but productive way of learning Visual Studio Tools for Office (VSTO) programming.
Scalable Vector Graphics - Path 3
Jul 30, 2015.
The article explains curves in SVG Path used in HTML 5 with suitable examples.
Scalable Vector Graphics - Path 2
Jul 29, 2015.
This article explains another part of SVG path used in HTML5 with various examples.
Scalable Vector Graphics - Path 1
Jul 26, 2015.
This article explains some parts of SVG Path used in HTML 5 by illustrating good examples for easy understand.
Stateless Path Drawing Based on Incoming Data
Jun 26, 2015.
In this article we will learn about Stateless Path drawing based on incoming data.
Storing Form Values & Images Path in Database & Images in ASP.Net Application Folder
Jun 15, 2015.
In this article you will learn how to manage an Employee Registration From with Employee Images saved in the database and project folders.
Unleashing Path List Box: Expression Blend (WPF, Windows Store)
Jan 07, 2015.
In this article you will learn about Unleashing Path List Box, Expression Blend (WPF, Windows Store).
Setting Path of JDK in Windows OS
Nov 06, 2013.
In this article you will learn step-by-step how to set the path of JDK in the Windows operating system.
Create Site Collection With New Managed Path and Content Database
Jul 15, 2013.
In this article we have explore the PowerShell script to create new site collection with new managed path & content database.
How to Save Image Path in Database Using MySQL & C#
Apr 01, 2013.
In this article we will first create a table in a MySQL database and then we will use a Windows Forms application to save an image into the My SQL database.
How to Save Data Using File Path in iPhone
Jan 15, 2013.
In this article I will explain how to save data temporarily using file path.
How to Show Current Path on Title Bar in Windows 8
Nov 21, 2012.
In this article, I will show you how to enhance your Windows 8 experience by displaying the current path on the title bar. Navigate through your file system with ease as you customize your Explorer interface.
Use of Motion Path in Expression Blend 4
Sep 03, 2012.
Today we are going to see animation using the Motion Path Option.
How to get full path of a file in C#
Jul 14, 2012.
How to get full path of a file using C# and .NET. The FullName property returns just the full path of a file including the file name.
HTML 5 Interactive Map Using SVG Path and Polygon
Jun 15, 2012.
Here you will learn how to work with a HTML 5 Interactive Map using SVG Path, Polygon, kineticJS and jQuery.
Moving a Cursor on a Dedicated Path Using HTML 5
Feb 12, 2012.
In this article we are going understand the concept of moving a cursor on a dedicated path using HTML 5. In this you will see that a cursor is moving on a dedicated path while displaying in the browser.
Info Path .XSN Inside: Part 1
Oct 02, 2011.
In this series, I’ll explain to you how to work programmatically with .xsn file in a very low level manner.
Set Path For Java in Windows XP
Jul 11, 2011.
It's a good idea to set the path permanently instead of writing the full path each time. So, keep reading this article to learn how to set the path for Java in Windows XP.
Editing the Path of any Shape in XAML Silverlight
May 09, 2011.
In this article, you will learn how to edit the path of any Shape.
Working with Managed path and Site Collection in SharePoint
Sep 03, 2010.
Here I am showing you how to work with Managed path and site collection in central administration of share point. This will be useful if you want to create a site collection under an existing web application.
Modify Path Specific Properties in PathListBox in Silverlight 4
Jun 20, 2010.
In this article we will see the LayoutPath properties that help in displaying the items in the path in PathListBox in Silverlight 4.
Multiple Paths in Path ListBox in Silverlight 4
Jun 18, 2010.
In this article we will see how multiple paths can be used in PathListBox control in Silverlight 4.
Graphics Path in Silverlight
Mar 26, 2009.
A graphics path is a set of connected lines, curves, and other simple graphics objects. This article demonstrates how to use a Path control in Silverlight using XAML and C#.
How to Overcome Error "Access to the Path Containing 'hash.web' is Getting Denied."
Jan 08, 2006.
Encountering "Access to the Path Containing 'hash.web' is Getting Denied" error? This issue often arises due to insufficient file permissions, restrictive security settings, or locked files. Solutions include checking file permissions, ensuring the file is not in use, and adjusting security software settings.
Path ambiguity in Power BI: Why your relationships can produce confusing results ?
Jun 01, 2026.
Learn to identify and fix confusing relationships causing incorrect results. Master data modeling for reliable reports. #PowerBI #Reporting #BusinessIntelligence
Replacing ORM Generated Inefficient SQL in Hot Paths
Nov 27, 2025.
Optimize application performance by replacing inefficient ORM-generated SQL in hot paths with handcrafted SQL. Improve speed and reduce database load for critical queries.
Highway to Angular 20: A Clear, Structured Learning Path
Nov 26, 2025.
Master Angular 20 with this structured learning path! From fundamentals to advanced techniques, build clean, scalable apps. Learn signals, forms, and more!
The Next 5 Years of Prompt Engineering: Benefits, Career Paths, and How to Stay Layoff-Proof
Aug 21, 2025.
A practical guide to AI prompt engineering, covering workflows, evaluation, governance, risks, and cost optimization. Learn how to design reliable, efficient AI systems aligned with business goals.
Market Research: Prompt Engineering Jobs—Salaries, Hiring Paths, and the 5-Year Outlook
Aug 21, 2025.
Prompt engineering has evolved into a core AI skill across diverse roles. This article explores job trends, salaries, titles, hiring practices, regional insights, and future outlook shaping the prompt engineering career landscape.
GSCP: A Framework for Structured, Multi-Path Cognitive Prompting in Language Models
Aug 06, 2025.
GSCP is a structured prompting framework for LLMs that enhances reasoning, accuracy, and tool integration using modular templates, self-verification, and multi-path strategies for enterprise-grade AI solutions.
On the Way to Artificial Super Intelligence: The Path, the Paradox, and the Possibilities
Jun 26, 2025.
Explores the journey toward Artificial Super Intelligence—its potential, the paradoxes it presents, and the possibilities it unlocks for the future of humanity and technology.
Breaking Down the CompTIA Certification Pathway: Which One is Right for You?
Mar 29, 2023.
Overview of the different CompTIA certifications and helps readers to determine which certification is best suited for their career goals, experience, and skills. The article covers a variety of certifications, including A+, Network+, Security+, CySA+, PenTest+, Project+, Cloud+, and more. It highlights the key features of each certification, what it covers, and its relevance to different career paths. The article is intended to serve as a useful resource for anyone who wants to expand their knowledge and skills in the IT industry and take their career to the next level.
What is Prompt Engineering and Why It Might Be Your Next Career Path
Jan 16, 2023.
Unlock the potential of your career with Prompt Engineering. Discover what it is and why it could be your next big move in the tech industry and path to an artificial intelligence career.
Could Not Find A Part Of The Path... bin\roslyn\csc.exe
Feb 16, 2022.
This article discusses roslyn issue.
Create Managed Paths In SharePoint 2013
Mar 07, 2018.
Managed paths are used to customize the URL of sites in order to make the URL more user-friendly and align them with your business requirements.
Construct Readable XML Output From SQL Query From Two Or More Tables Using “For XML PATH” Statement
Sep 04, 2017.
In my previous article I discussed about how to get a XML format output from query and process that by using XML AUTO statement, and I give different types of “for XML”.
Manage Paths Of Web Applications In SharePoint 2016 Central Administration
Aug 29, 2017.
Here, you can include a new path to your web application or insert it through explicit or wildcard entries. This helps you to decide what will be the path of creating websites in the site collection.
SharePoint 2016 Administration - Configure Managed Paths Using PowerShell
Jun 07, 2017.
In this article we will discuss how to configure Managed Paths using PowerShell
Configure Content Deployment Paths And Jobs In SharePoint 2013 Central Administration
May 11, 2017.
In this article, we will see how to Configure Content Deployment Paths & Jobs in SharePoint 2013 Central Administration.
Manage Paths Of Web Applications In SharePoint 2013 Central Administration
Dec 29, 2016.
In this article, we will see how to manage paths in web applications in SharePoint 2013 Central Admin.
Exploring Managed Paths In SharePoint Server 2016
Oct 18, 2016.
In this article, you will learn about "Managed Paths" in SharePoint Server 2016.
SharePoint And InfoPath: Using Lookup Fields
Feb 09, 2014.
This article explains how to solve the InfoPath cannot submit the form because it contains errors error in SharePoint. Here we can explore a solution to solve it.
Site Collection For Root Explicit Inclusion and Wildcard Inclusion Managed Path
Jan 13, 2014.
In this article we create an Explicit Inclusion and Wildcard Inclusion managed path.
AnimateMotion Following a Path
Mar 06, 2013.
In this article I describe the implementation and use of amimateMotion following a Path.
Practical Approach of Deleting Files From FTP Path
Apr 27, 2012.
In this article we are going to see how to delete a file from the FTP path.
Path Geometries in WPF
Apr 26, 2012.
In this article, we discuss the Path Geometries in WPF.
Practical Approach of Creating and Removing Directory To/from FTP Path
Apr 25, 2012.
In this article we are going to see how to create and remove a directory to/from FTP path.
Practical Approach of Getting Directory List and Its Details From FTP Path
Apr 24, 2012.
In this article we are going to see how to fetch directory and file details from the FTP path.
Practical Approach of Uploading File to FTP Path
Apr 19, 2012.
In this article we are going to see how to upload a file to a FTP path and save it.
Practical Approach of Downloading File From FTP Path
Apr 18, 2012.
In this article we are going to see how to download a file from a FTP path and save it to a local folder.
Creating Various Text Paths Using HTML 5
Feb 14, 2012.
This is a simple application for beginners that shows how to create various text paths using HTML 5 and CSS tools.
Programmatically create Managed Paths in SharePoint 2010
Jun 23, 2011.
Managed Paths - We can specify which paths in the URL namespace of a Web application are used for site collections. We can also specify that one or more site collections exists at a specified path.
Managed Paths in SharePoint 2010 using PowerShell
Feb 01, 2011.
In this article we will be seeing about Define Managed paths in SharePoint 2010.
Define managed paths using Central Administration in SharePoint
Oct 22, 2010.
In this article I showing you how to create a managed path using SharePoint Central Administration.
Define managed paths using Windows Power shell
Oct 22, 2010.
In this article I am giving a small introduction about how to create a managed path using Power Shell.
Use Graphics Paths in GDI+
Jul 13, 2010.
In this article you will learn how to use Graphics Paths in GDI+.
Application Startup and Executable Path
Apr 26, 2010.
The code snippet in this article demonstrates how to use Application class static properties to get Windows Forms application startup path, executable path and user data path using C#.
Understanding and Using Graphics Paths in GDI+
Mar 22, 2010.
In this article I will explain understanding and using Graphics Paths in GDI+.
Path In WPF
Feb 03, 2010.
A graphics path is a set of connected lines, curves, and other simple graphics objects, including rectangles, ellipses, and text. This article demonstrates how to create and use paths in WPF and XAML.
Drawing Graphics Paths in GDI+
Nov 27, 2009.
In this Article I will explain how to Draw Graphics Paths in GDI+.
XML Pathfinder - Sample C# Utility to Study XML Paths and XPath Queries
Feb 05, 2008.
This article discusses the construction of a simple utility that may be used to locate and evaluate paths within an XML document, and to test queries against those paths.
Trace Utility to Trace IP Packet Path
May 16, 2002.
Trace utility traces the path of an IP packet. To understand the process, its important to understand ICMP protocol we are going to use for this purpose.
Number of Ways to Arrive at Destination
Apr 22, 2026.
Master Dijkstra's Algorithm to find the shortest path and count unique routes to a destination in a weighted graph. Includes Java code and complexity analysis.
A Practical .NET Developer Roadmap for 2026
Jan 16, 2026.
A practical .NET Developer Roadmap for 2026 focused on real-world skills, career paths, and long-term growth. Learn C#, ASP.NET Core, backend, Blazor, full-stack development, system design, cloud fundamentals, and senior developer mindset with a clear, learning path.
How Does a Recovery Phrase Create a Secret Key
Dec 30, 2025.
Unlock the mystery of recovery phrases! Learn how they generate secret keys, seeds, and addresses in HD wallets. Master wallet safety and avoid common mistakes. A must-read for crypto security!
Why Do I See Different Addresses Even With the Same Recovery Phrase?
Dec 30, 2025.
Seeing different crypto addresses after wallet recovery? Don't panic! This article explains derivation paths, account indexes, and network settings that cause this issue. Learn how to find your funds!
Is Frontend Development Becoming Too Complex for Beginners?
Dec 02, 2025.
Is frontend development too complex for beginners? Explore the rising complexity, frameworks, tools, and how to thrive with a structured learning path. Start small!
Code to Vision: Your Roadmap from Software Developer to Product Manager
Sep 28, 2025.
This article empowers software developers to transition into product management. Leverage your technical expertise, learn crucial soft skills, and avoid common pitfalls. Discover how to shift your mindset from code to customer value, and start shaping the future of products you believe in. Unlock your potential as a product leader!
Do I Need Coding to Be a Prompt Engineer?
Sep 07, 2025.
Do you need coding skills to become a prompt engineer? Learn when coding is required, when it’s not, and the exact technical and non-technical skills hiring managers expect in prompt engineering interviews.
Is Prompt Engineering a Long-Term Career in 2025 and Beyond?
Aug 19, 2025.
Prompt engineering is one of the hottest AI careers today, but is it sustainable? Learn if prompt engineering is a long-term career, how it’s evolving, and where the future opportunities lie.