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
About Exit
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Rajiv Singh (2)
Lokendra Singh (2)
Zain Ul Hassan (2)
Nitin Bhardwaj (2)
Vipul Malhotra (1)
Vivek Kumar (1)
Hanif Hefaz (1)
Tuhin Paul (1)
CSharp TV (1)
Sigar Dave (1)
Anuj Agrawal (1)
Mahalasa Kini (1)
Nitin (1)
Sanjoli Gupta (1)
Mohammad Elsheimy (1)
Ziggy Rafiq (1)
Jay Smith (1)
Prasad (1)
Om Agarwal (1)
Abhishek Khandare (1)
Sujeet Suman (1)
Jake Creasy (1)
Tural Suleymani (1)
Fabio Silva Lima (1)
Pushpendra Shukla (1)
Rithik Banerjee (1)
Abubackkar Shithik (1)
Hemant Jindal (1)
Sagar Shinde (1)
Hussain Patel (1)
Manikanta Pattigulla (1)
Kevin Morales (1)
Tushar Sharma (1)
Rion Williams (1)
Matthew Cochran (1)
Sharad Gupta (1)
Mahesh Chand (1)
Gaurav Gupta (1)
Meet Agarwal (1)
Manas Moharana (1)
Related resources for Exit
No resource found
Construct a Deep Copy of LinkedList
10/3/2024 11:25:30 AM.
The task involves creating a deep copy of a linked list where each node has a random pointer that may point to any node or null. Using a dictionary to map original nodes to their corresponding new nod
Learning Priority Queue in Python
10/3/2024 10:06:45 AM.
A Priority Queue in Python can be implemented using the heapq module, which provides efficient min-heap operations like heappush, heappop, and heapreplace. Unlike a regular queue, a priority queue pro
Fibonacci Series : Recursion, Memoization, and Optimal Approach
10/1/2024 8:15:39 AM.
The Fibonacci series is a mathematical sequence starting with 0 and 1, where each subsequent number is the sum of the previous two. This article explores three methods to compute Fibonacci numbers in
Learn Sliding Window Technique
9/23/2024 8:26:33 AM.
The Sliding Window Technique is an efficient method for solving problems involving subarrays or substrings. It uses a "window" that slides across the data structure, allowing for dynamic adj
Optimizing Searching Algorithms in C# and Reducing Complexities
8/30/2024 6:54:15 AM.
This article explores the implementation of 10 common searching algorithms in C#, detailing their use cases, workings, and complexities. From simple linear searches to more complex algorithms like Bin
Understanding Merge Sort by Using the Divide & Conquer Algorithm
8/1/2024 5:51:25 AM.
This content delves into the Merge Sort algorithm, a classic example of the divide and conquer strategy. It explains how Merge Sort works by recursively dividing the array into smaller subarrays, sort
Overfitting and Underfitting in Machine Learning
7/26/2024 6:08:59 AM.
Overfitting and underfitting are critical concepts in machine learning. Overfitting occurs when a model learns the training data too well, capturing noise and failing to generalize. Underfitting happe
Breaking Down SQL Complexity
7/21/2024 4:03:03 AM.
Choosing between Common Table Expressions (CTEs) and subqueries in SQL Server depends on readability, maintainability, and performance. Subqueries are ideal for simpler, single-use cases, while CTEs e
Cyclomatic Complexity in Code
7/8/2024 8:07:09 AM.
In this session, Vahid will talk about how to measure architectural charactristics, and while familiarizing ourselves with the Cyclomatic Complexity, we will examine how to calculate it together.
NPM Script 'start' Exited Without Completing Create-React
7/2/2024 7:02:18 AM.
When developing a Microsoft Teams Personal app deployed to Azure App Service with a .NET Core backend, an AggregateException error occurred: "The NPM script 'start' exited without indicat
Facade Design Pattern With Example
6/11/2024 12:19:08 PM.
In this article we will try to implement Facade Design pattern using an example of a Banking System which has different types of accounts like checking and savings.
Tree Data Structure
6/7/2024 10:30:34 AM.
Learn about trees, a hierarchical data structure. Explore terminology, binary tree types, and traversal methods like pre-order, in-order, post-order, and level-order. Understand insertion, deletion, a
10 Best AI Search Engines in 2024 (Free & Paid)
6/6/2024 11:56:44 AM.
Artificial Intelligence (AI) has significantly enhanced the capabilities of search engines, making them smarter, faster, and more intuitive. As we step into 2024, let's explore the 10 best AI-powe
C# HashTable
5/21/2024 9:39:15 AM.
C#'s HashTable is a data structure storing key-value pairs using a hash function for fast retrieval. It handles collisions via chaining, ensuring efficient insertion, deletion, and retrieval opera
Reducing Complexity Using Entity Framework Core Owned Types
4/18/2024 8:45:52 AM.
Simplify data modeling in Entity Framework Core with Owned Types. Streamline database schema and relationships, reducing complexity in code-first approaches. Enhance maintainability and readability wi
Code readability is enhanced with C# 10 top-level statements
4/16/2024 10:18:02 AM.
Ziggy Rafiq discusses tackling challenges in software component specification standards through the implementation of solutions such as adapters and bridges for standard mediation, abstraction and enc
Easy Password Generator: Create Secure Passwords in ASP.NET
4/5/2024 5:39:03 AM.
Discover a powerful Password Generator tool designed to enhance your online security. Our innovative solution creates strong and unique passwords with customizable length and complexity.
Learn About Data Structures And Algorithm (DSA) - Part Three
3/21/2024 9:32:38 AM.
This article will be of some sort of theoretical and story based. It will tell you about the crucial concepts of data structures and algorithms in terms of understanding the linked list with a unique
Learn About Data Structures And Algorithm (DSA) - Part Four
3/21/2024 9:28:01 AM.
This article will tell you about the crucial concepts of data structures and algorithms in terms of understanding the comparison between the array and linked list. This article is the fourth one in th
Dynamic Theme Change Across Canvas App Screens
3/7/2024 8:33:35 AM.
This C# method compares files using WinMerge, generates an HTML report, and sends it via email. It utilizes ProcessStartInfo for execution, with configurable options and paths for comparison and outpu
To Determine the Password Policies For Windows 7
2/25/2024 8:13:14 AM.
In this article determines content and explores the password policies implemented for Windows 7 systems, delving into the security measures, authentication guidelines, and access control mechanisms.
Async Patterns in MVC Controllers for Efficiency or Adding Unnecessary Complexity?
2/22/2024 8:08:10 AM.
Explore the necessity of async patterns in MVC controllers—unveiling the intricacies of conventional and alternative coding styles
Exit Methods In C# Application
9/22/2023 7:08:56 AM.
In this article you will learn about different exit methods in C#.
Data in High Dimensions: Unveiling the Potential of Vector Databases
8/30/2023 10:51:05 AM.
Unlock the potential of high-dimensional data with vector databases. Discover how these specialized databases revolutionize image recognition, recommendation systems, and natural language processing.
So, What Exactly Big O Is?
10/26/2022 5:16:49 PM.
What is Big O notation? How to use it? How to calculate the algorithm's speed?
3 Tips To Reduce Cyclomatic Complexity In C#
8/23/2022 9:21:09 AM.
In this article, I suggest tips to help you to reduce Cyclomatic Complexity in your C# code to improve readability and make code less complex.
CRUD Operations In Windows Applications Using C#
7/19/2022 8:13:15 PM.
In this article, you will learn how to perform a CURD Operation in Windows Form Applications in C#.
Best Sorting Algorithm
7/24/2020 12:43:32 AM.
In this article, you will learn about which sorting algorithm is the best.
Show Whether a Textbox Value Exists in Database Using JavaScript
4/11/2020 2:29:57 PM.
In this article I explain how to show whetehr a TextBox value exists in the database using JavaScript.
How To Add Android Exit Dialog To Android App Using Android Studio
2/26/2020 10:43:21 PM.
Android is one of the most popular operating systems for mobile. In this article, I will show you how to add Android Exit Dialog to Android App Using Android Studio.
Show Whether a Textbox Value Exists in Database Using TypeScript
10/7/2019 4:13:11 AM.
In this article I explain how to show whether a TextBox value exists in the database using TypeScript.
String Algorithm - Check String Permutation
8/7/2019 7:27:54 AM.
This article describes the algorithm to validate if two given strings are permutation combination of each other.
Code Metrics Cyclomatic Complexity
12/28/2017 11:00:14 PM.
Let's learn about Code Metrics Cyclomatic Complexity in this write-up.
Data Structures and Algorithm (DSA) – Performance, Complexity And Big-O Notation
8/29/2017 7:01:48 AM.
In this article we will be talking about what performance of an algorithm is and how Complexity is used to measure performance and what Big-O notation is.
Measure Your Code Using Code Metrics
8/1/2017 12:11:00 AM.
As a developer, when you are developing applications, how optimistic you are about delivering quality code? Quality code means not only bug free code but also understandable, maintainable, extensible,
Data Structures And Algorithms - Part Two - A Word About Big-O Notation
6/17/2017 12:16:44 AM.
This article is an introduction to Big-O Notation, which is used to measure the running time of a function/ method.
An Introduction To Software Metrics
11/5/2015 1:34:15 AM.
In this article you will learn about Software Metrics.
Line Counting Trickery Within Visual Studio
11/2/2015 1:03:54 PM.
In this article you will learn about line counting trickery within Visual Studio.
Writing Better Code; Keeping it Maintainable
2/4/2014 1:34:30 PM.
This article provides guidance for writing better, more maintainable code.
Miscellaneous Functions in PHP: Part 2
5/6/2013 12:46:07 PM.
In this article I describe the PHP Misc functions die, eval, exit, get_browser and highlight_file.
How to Exit a Windows Store app in Code
1/5/2013 2:47:57 AM.
This tip shows how to close a Windows Store app in dynamically.
Pointer Events in Windows Store Apps Using C#
11/17/2012 11:17:30 AM.
In this article I show the uses of pointer events such as Pointer Entered and Pointer Existed and how to associate these with the mouse pointer in Windows Store Apps using XAML and C#.
Entry and Exit Criteria For Software Testing
6/21/2012 6:12:46 AM.
Entry and Exit criteria are required to start and end the testing.
Accessing domain user properties from a Sharepoint site
4/5/2010 8:06:49 AM.
This article describes a simple approach to determining whether or not a logged in user is a member of a group within the context of a Sharepoint Web based application.