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]
Mohamed Azarudeen Z(5)
Sreenath Kappoor(5)
Ishika Tiwari(3)
Sardar Mudassar Ali Khan (3)
Gajendra Jangid(2)
Jaimin Shethiya(2)
Jitendra Mesavaniya(2)
George (2)
Shenbagapandiyan P(2)
Tuhin Paul(2)
Keyur (2)
Naresh Beniwal(2)
Uday Dodiya(2)
Amit Mohanty(2)
Arvind Yadav(2)
Pushpendra Shukla(2)
Kirtesh Shah(2)
Sriganapathi S(2)
Abhishek Yadav(2)
Chetan Sanghani(1)
Satheesh Elumalai(1)
Madhanmohan Devarajan(1)
Vishal Joshi(1)
Akshima Aggarwal(1)
Alkesh Bijarniya(1)
Vikas Singh(1)
Darshan Adakane(1)
Divyansh Gupta(1)
Pratik Somaiya(1)
Rohini Parade(1)
Ashutosh Singh(1)
Rajashekar Syereddy(1)
Khoday Akilesh(1)
Ziggy Rafiq(1)
Allam Purushotham(1)
Ajay Kumar(1)
Sanwar Ranwa(1)
Subarta Ray(1)
Dmytro Hubernatorov(1)
Vipul Malhotra(1)
Jignesh Kumar(1)
Mukesh Nailwal(1)
Dhanush K(1)
Vipin Mittal(1)
Sachin Mishra(1)
Yogeshkumar Hadiya(1)
Rinki (1)
Harshit Pandey(1)
Jigar Shah(1)
Sarthak Varshney(1)
Shaishav Desai(1)
Esmael Esmaeli(1)
Navin Prakash(1)
Aditi Bamaniya(1)
Nagaraj M(1)
Nitin (1)
Vijayaragavan S(1)
Venkatasubbarao Polisetty(1)
Varun Setia(1)
Mahesh Chand(1)
Rajat Jaiswal(1)
Aashina Arora(1)
Ganesan C(1)
Jay Pankhaniya(1)
Chaman Gautam(1)
Bohdan Stupak(1)
Onkar Sharma(1)
Amit Tyagi(1)
Mahesh Vishwakarma(1)
Priyanka K S(1)
Shweta Lodha(1)
Rohit Rao(1)
Rikam Palkar(1)
Resources
No resource found
Case Studies and Real-World Applications: .NET Standard in Action
Jul 17, 2024.
.NET Standard empowers developers to create robust applications across platforms like healthcare management systems with EHR integration using Xamarin and ASP.NET Core, and financial trading platforms leveraging scalable microservices on Azure.
Learn About Angular Karma Test Cases Using GitHub Copilot
Jul 12, 2024.
Learn how to create and execute Angular Karma test cases using GitHub Copilot. Start by creating components and corresponding test files like device.ts and device.test.ts. Add functions such as pushToDevice and sendToBackend, then use Copilot to generate multiple test cases. Run tests with npm run test and view results in Chrome.
Dynamics 365 Customer Service: Disable the Resolve Case button
Jul 11, 2024.
This article guides you on restricting customer service associates from resolving cases with open activities or child cases in Dynamics 365. By creating a JavaScript Web Resource and customizing the Case form, you can enable or disable the "Resolve Case" button based on the status of related activities and cases.
Sealed Class VS Abstract Class with Real-time Cases
Jul 10, 2024.
This article explores the differences between sealed and abstract classes, providing real-time case studies to illustrate their use in software development. Learn how sealed classes restrict inheritance, while abstract classes serve as blueprints for other classes.
Client Script - OnCellEdit with Realtime Scenarios and Use Cases
Jul 02, 2024.
Explore the power of client-side scripting with a focus on OnCellEdit events, providing real-time scenarios and practical use cases. Delve into JavaScript's capabilities in frontend development, mastering event handling for seamless data interaction and enhanced user experiences.
ServiceNow Client Script OnSubmit Real-Time Scenarios and Use Cases
Jun 27, 2024.
Explore real-time scenarios and practical use cases of ServiceNow Client Script's OnSubmit functionality. Discover how to streamline workflows, automate tasks, and enhance user experiences through effective scripting.
Key Features and Use Cases of Angular
Jun 27, 2024.
Angular is a robust framework for building client-side applications with HTML, CSS, and TypeScript, offering features like component-based architecture, two-way data binding, and dependency injection.
SQL Merge Statement: Syntax, Usage, and Example
Jun 25, 2024.
The SQL MERGE statement combines INSERT, DELETE, and UPDATE operations into a single query, synchronizing data between source and target tables based on key fields. This powerful command efficiently handles data modifications, ideal for maintaining Slowly Changing Dimensions (SCD) in data warehouses.
Understanding throw vs throw ex vs throw new Exception() in C#
Jun 22, 2024.
Explore the nuances of exception handling in C# .NET with a deep dive into 'throw', 'throw ex', and 'throw new Exception()'. Learn when to use each technique, their impact on stack traces and exception propagation, and best practices for effective error handling in your applications.
IIF in Microsoft SQL Server
Jun 21, 2024.
IIF function in SQL, also known as "Immediate If," provides a concise way to perform conditional evaluations within queries. It allows SQL developers to return different values based on whether a specified condition is evaluated as true or false.
Garbage Collection (3), C# using statement --- Language support for Dispose
Jun 17, 2024.
This article will discuss the C# using a statement. Garbage collection (GC) in computer science reclaims unused memory automatically. Invented by John McCarthy in 1959, GC simplifies memory management. This series explores GC in .NET, focusing on managed, unmanaged code and the `using` statement for resource management.
Improved Performance by STORED PROCEDURES
Jun 08, 2024.
Stored procedures in relational database management systems (RDBMS) encapsulate frequently used SQL statements for efficient execution. They offer dynamic SQL execution, return values via OUT keywords, and include procedural logic like IF-ELSE and loops.
Break in C#
May 24, 2024.
The "break" statement in C# is a control flow statement that terminates the nearest enclosing loop or switch statement. It is commonly used to exit a loop prematurely when a specific condition is met, improving code readability and efficiency.
Client Script - OnChange with Realtime Scenarios and Use Cases
May 24, 2024.
Harness the power of client-side scripting with OnChange events for dynamic user experiences. Real-time scenarios include form validation, live data updates, and interactive interfaces, enhancing user engagement and application responsiveness.
Continue in C#
May 23, 2024.
In C#, the continue statement is used within loops (for, while, do-while, and foreach) to skip the current iteration and proceed to the next one. It's useful for bypassing specific conditions within a loop, enhancing control flow and loop efficiency.
If Statement in C#
May 16, 2024.
Master the fundamentals of C# with if statements. Learn to control program flow based on conditions, enabling dynamic decision-making in your code efficiently."
What Are the Use Cases of useContext Hook in ReactJS?
May 16, 2024.
The useContext hook in React streamlines context consumption, simplifying global state management, user authentication, theme switching, and localization. Practical examples demonstrate its versatility, enhancing React development efficiency.
Azure Monitor Implementation with Real-Time Use Cases
May 16, 2024.
In this article, we will delve into the implementation of Azure Monitor, providing step-by-step guidance along with real-time use cases to illustrate its significance and utility.
Understand Azure 900 Microsoft Privacy, Terms, DPA
May 15, 2024.
This article is part of the Azure 900 course which describes what type of documents Microsoft shares with its users or customers. These documents deal with privacy, using online services, and handling data.
Switch Statement in C#
May 13, 2024.
Learn how to use the switch statement in C# for efficient control flow. Explore its syntax, including case labels, break statements, and default handling. Discover how to leverage switch with enums and expressions for concise and structured decision-making in your code.
Client Script - OnLoad with Realtime Scenarios and Use Cases
Apr 29, 2024.
In his article, let's explore the nuances of OnLoad client scripts in the ServiceNow environment and provide developers and administrators with an extensive how-to guide for making the most of this potent feature.
Storage Services Use Cases and Best Practices in Azure and AWS [Part 2]
Apr 29, 2024.
Absolutely, choosing the right storage service in Azure or AWS is crucial for achieving optimal performance, scalability, cost-efficiency, and compliance with data management requirements.Understanding Storage Services Use Cases and Best Practices in Azure and Aws [Part 1]
Storage Services Use Cases and Best Practices in Azure and AWS [Part 1]
Apr 29, 2024.
Choosing the right storage service in Azure or AWS is crucial for achieving optimal performance, scalability, cost-efficiency, and compliance with data management requirements.
What is Closure in Python & its Use Cases?
Apr 25, 2024.
Python closer is not a built-in function or concept. However, in programming parlance, a closer typically refers to a function that captures and remembers its surrounding state (including local variables) when it is defined, allowing it to access and manipulate that state even after the surrounding scope has exited.
MERGE Stored Procedures in SQL Server
Apr 15, 2024.
In this article, I present how to use the MERGE statement in a stored procedure to merge a single record and how to use it to merge a list of records by using Table-Valued parameters in SQL Server.
Angular Expressions: Syntax, Use Cases, and Implementation Method
Apr 15, 2024.
Explore Angular expressions, small JavaScript-like codes enclosed in {{ }}, used for dynamic data display, filtering, and more. Learn through examples how to employ expressions via interpolation or custom directives for seamless integration with your Angular application.
Client Scripts in ServiceNow- Simplified with Real-Time Use Cases
Apr 05, 2024.
From onChange to onLoad, discover the four key types of client scripts and how to use them effectively to enhance user experience and streamline platform functionality. Explore essential tips and best practices for writing efficient, maintainable client scripts.
Important PySpark Import Statements
Mar 21, 2024.
PySpark, the Python API for Apache Spark, has gained immense popularity for its ability to handle big data processing tasks efficiently. In this article, we'll explore the top five import statements in PySpark and delve into their significance in building robust data processing pipelines.
What is Use of ‘Using’ Statement in .NET?
Mar 15, 2024.
In this article, we will cover What is the use of the ‘Using’ statement in .NET. The 'using' statement in .NET ensures efficient resource management, prevents memory leaks, and promotes cleaner, more reliable code.
The Dangling If-Else Problem: A Common Pitfall in Programming
Mar 08, 2024.
Explore the often-overlooked issue of the "dangling if-else problem" in programming through our insightful article. We delve into the ambiguity that arises when multiple if-else statements are nested without clear indentation, leading to unexpected behavior and logical errors.
Advanced Use Cases of Vue Teleport for Dynamic Content Rendering
Feb 26, 2024.
Vue Teleport is a powerful feature in Vue.js that allows developers to dynamically move content within the DOM structure. In this article, we will explore four distinct examples showcasing the flexibility and creativity that Vue Teleport brings to Vue.js applications.
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.
Camelcase Serialization in .Net 9
Feb 19, 2024.
In .NET 9, developers have been granted a powerful tool to enhance data serialization: CamelCase Serialization. This feature facilitates smoother interoperability with systems and frameworks that expect camelCase formatted data
Enhance Customer Service Case Forms with Case Summary Copilot
Feb 15, 2024.
Seamlessly integrated into the Customer Services case form, this feature enhances efficiency by automating data entry and providing a concise summary of cases.
Understanding Azure Event Grid
Feb 12, 2024.
Azure Event Grid is a fully managed event routing service that simplifies the development of event-driven applications. In this article, we'll explore the key concepts, features, and use cases of Azure Event Grid, shedding light on its role in building modern, scalable, and responsive applications.
Code readability is enhanced with C# 10 top-level statements
Jan 30, 2024.
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 encapsulation for complexity reduction, and version control and configuration management for change tracking. These strategies promote interoperability, simplify complexity, and uphold consistency and compatibility across components and systems.
Goal-Based Software Engineering for Successful Development
Jan 29, 2024.
Software development is becoming increasingly complex. With the growing demands for sophisticated and user-centric applications, traditional approaches to software engineering are no longer sufficient. This has led to the emergence of goal-based software engineering, a paradigm that focuses on aligning software development efforts with specific objectives and user needs.
Develop D365 Contact Creation Plugin with Unit Test Case
Jan 24, 2024.
Create a Plugin when a new Contact is created in D365 and Update the same Contact in PreOperation with some data. This code snippet showcases the setup of an Entity Framework plugin in C#. It covers essential lines for retrieving services, context, and executing operations. Also, a unit test example is provided.
If-Else vs Switch Statement in C#
Jan 16, 2024.
Navigate the decision-making landscape in C# with clarity. Delve into the distinctions between if-else and switch statements, understanding their pros, cons, and optimal use cases for efficient code.
Split Camel Case to Space using Angular Pipe
Dec 27, 2023.
Master the creation of an Angular pipe to effortlessly split camelcase text with spaces. Follow the prerequisites, and steps, and enhance your Angular app for improved readability.
MySQL: Unveiling its Versatility and Robustness for Diverse Use Cases
Dec 20, 2023.
Explore MySQL's diverse use cases in web applications, e-commerce, CMS, data warehousing, telecommunications, and finance. Dive into its key features, architecture, and crucial queries for efficient database management.
Reduction Consumed Storage in SQL DB
Dec 11, 2023.
The simple way to reduce consumed DB storage on production app, with data migration and without dramatic changes in DAL (no additional services are required)
Understanding LIKE vs ILIKE in PostgreSQL
Dec 05, 2023.
In this article, we will focus on the differences between the LIKE and ILIKE operators, and how to use them effectively.
React.js Test Cases
Nov 10, 2023.
Testing React.js components is well-structured and informative. It covers the essential aspects of testing, from setting up the testing environment to implementing different types of test cases using the Jest and React Testing Library. The inclusion of practical examples with clear explanations makes it easy for developers, especially those new to testing in React, to understand the concepts and get started.
Simplify Your Code with Switch Expressions: Patterns and Examples
Nov 06, 2023.
In C#8 switch statement enhanced with powerful feature that can simplyfy your code and make it more readable and maintainable. In this article We will explore into C# 8 switch expression and how to use in our code and make it more readable and how to use in different way to write conditional logic and how to leverage pattern matching functionality using switch.
How C# Continue and Break Statements are Different?
Nov 02, 2023.
Let's know the difference between continue and break statements.This article provides an explanation of the continue and break statements in C# effectively highlights their essential functionalities within loops. Both of these control flow statements play crucial roles in managing the behavior of loops based on specific conditions.
Exploring Top Level Statements - Programs Without Main Methods in C#
Oct 09, 2023.
Top-level statements are a new feature introduced in C# 9 that allows you to write code directly at the root of a file, without having to wrap it in a class or a method.
Control Structures in R Programming
Sep 25, 2023.
In this article, we will explore the various types of control structures in R, with their syntax, and present example programs with output to illustrate their usage.
Conditional INSERT, UPDATE, DELETE with MERGE Query
Sep 04, 2023.
The MERGE statement is a versatile SQL command used for conditional INSERT, UPDATE, or DELETE operations, streamlining database management tasks efficiently in a single query.
What are Functional Requirements?
Jul 31, 2023.
Functional Requirements of the system are a very critical part of the system in which we defined the overall functionality of the system. Functional Requirements define the behavior of the system means what the system should do Like, and Code Compiler should complete the Machine Code.
Use Case View in Software Development
Jun 30, 2023.
The Use Case View is a perspective used in software development that concentrates on identifying a system's functional needs from the viewpoint of its users or other external actors. It aids in comprehending how users engage with the system and what features it ought to offer to meet their wants. Use case diagrams, which show how actors interact with the system, are generally used to record the use case view.
How To Use LIMIT in MySQL?
Jun 20, 2023.
The LIMIT clause is used to limit the number of rows returned by a SELECT statement in MySQL. It is typically used in combination with the ORDER BY clause to specify the order in which the rows should be returned. The syntax for the LIMIT clause is as follows.
What is Default Keyword in Java
May 11, 2023.
In this article, you will learn about What is Default Keyword in Java
SQL Where Statement
May 10, 2023.
In this article we will discuss about SQL Where statement
Conditional Statements in Rust: match Statement
May 04, 2023.
In this article, we learn about Conditional Statements in Rust: match Statement
Conditional Statements in Rust: if Statement
May 03, 2023.
In this article we learn about if statement in rust language.
Understanding Conditional Statements in C#
Apr 27, 2023.
In this article we are going to cover Conditional Statements of C#. We are going to cover all the statements in depth.
Match in Rust
Apr 26, 2023.
match control flow in rust
How to use loops In Rust?
Apr 26, 2023.
learning for loop, while loop and loop, and also learn break and continue statements
How to Use Aggregate Functions in SQL Server?
Apr 20, 2023.
Implementing C# 12's Top-level Statements for Faster, More Lightweight Code
Apr 18, 2023.
Implementing C# 12's Top-level Statements for Faster, More Lightweight Code
How Node.js is Revolutionizing Web Development – Top Use Cases to Explore!
Apr 17, 2023.
C# 12's Switch Expressions: A More Powerful Alternative to Traditional Switch Statements
Apr 17, 2023.
C# 12's Switch Expressions: A More Powerful Alternative to Traditional Switch Statements
What Is Interceptor In Angular And Use Cases Of Interceptor
Mar 29, 2023.
In Angular, an interceptor is a middleware service that can intercept HTTP requests and responses made from the application to the server. The interceptor can be used to modify the requests or responses, add headers or tokens, handle errors, or perform any other necessary actions.
Exception Handling (7), C# Exception Handling Statements
Mar 14, 2023.
This article will discuss Exception Handling Statements.
Use Cases Of Kafka
Feb 27, 2023.
In this article, we'll discuss the Use Cases of Kafka.
Registration Module General Test Cases
Feb 21, 2023.
This article helps any user to know the test scenarios of the Registration module.
Exploring The Benefits And Limitations Of Data Anonymization - Use Cases And Considerations For Protecting Privacy
Feb 17, 2023.
In this article, you will learn about exploring the benefits and limitations of Data Anonymization - Use Cases and Considerations for Protecting Privacy.
How To Use SQL MERGE Statement
Jan 10, 2023.
In this article, you will learn how to use the SQL MERGE Statement.
Implementing A Proxy Server In C# - An Example And Test Case
Dec 09, 2022.
In this tutorial, we provide an example of how to create a simple proxy server in a C# application using the HttpListener class. We also show how to write a test case to verify that the proxy server works as expected.
How To Execute SQL Statements From Command Prompt
Jul 30, 2022.
Here we discuss SQL and how to execute SQL statements in a command prompt.
Flutter Common Control Flows And Statements 😎
Jul 27, 2022.
In this article, you will learn about Flutter Common Control Flows and Statements.
Solution - Laravel Test Case Warning And Coverage-Report File Not Generating
Jul 19, 2022.
This article is related to the solution of the Laravel unit test case warning "XMODE_DEBUG = coverage or xdebug.mode = coverage" has to be set and due to this warning cover-report.xml file is not going to be generated.
Git Hook commit -msg Use Case
Jul 18, 2022.
In this article we will see, how we can prevent the wrong format of commits.
Different Use Cases Of Blockchain
Jul 15, 2022.
Blockchain, beyond powering digital currencies, finds applications in finance, healthcare, real estate, energy, and supply chain. Explore its role in optimizing financial processes, improving healthcare claims, facilitating real estate tokenization, transforming energy, and revolutionizing supply chains.
Switch Case Conditionals In Desktop Flow Using Microsoft Power Automate
Jun 28, 2022.
Reading this article, you can learn how to use Switch Case Conditionals in Desktop flow using Microsoft Power Automate.
Conditional Statement With C#
May 16, 2022.
conditional statements are used in a C# or any Object-oriented programming language for check the condition for particular output. In a C# are used four types of conditional statements, if(), else, else if(), switch().
Understand Switch Statement In Power Automate
Apr 12, 2022.
Generally to handle multiple conditions then like in javascript and C# .net switch will be used, in the same way in Power automate also we can use Switch action. In this article we can see how it can be used to decide whether a person can take vaccination or not.
Writing Efficient Unit Test Cases with Moq and Bogus
Mar 21, 2022.
Writing Efficient Unit Test Cases with Moq and Bogus.
Create, Insert, Update, Delete, Select, Truncate, Drop Statement In Oracle PL-SQL
Feb 28, 2022.
In this article, you will learn about Create ,Insert, update, delete , select table , truncate table , drop table statement in Oracle Database / PL-SQL.
Top-level Statements in C# 10
Feb 24, 2022.
Learn what top level statements are in C# and why, what, and how top level statements work.
How To Insert A Default Value In SQL Statement
Jan 03, 2022.
This is SQL tips and interesting questions in developers mind how to insert default value in SQL statement when there is no other value
Working With CSV In Python
Dec 16, 2021.
In this article, you will learn about CSV In Python.
The JavaScript Spread Operator (...) And Its Use Cases
Aug 10, 2021.
Discover how the JavaScript spread operator can simplify your code and make your life easier. Learn the basics and advanced use cases of this powerful tool in our comprehensive guide. Get ready to take your skills to the next level!
SQL Server Merge Statement
Jul 16, 2021.
In this article, you will learn about the SQL SERVER MERGE statement.
Introduction To Conditional Statement In C#
Jul 10, 2021.
This conditional statement is for the beginner where they can learn the basic idea about the conditional statement of the C# Programming languge. Here, this will contains the solution for the hackerrank day 3 Intro to Conditional Statement.
Python Unconditional Statements And String Operations✍️
Jul 01, 2021.
In this article, you will learn about Python Unconditional Statements and String Operations??.
Python - Branching Statements ✍️
Jun 11, 2021.
In this article, you will learn about Python - Branching Statements.
Understanding With ng-Switch Statements In Angular
May 28, 2021.
In this article, you will learn about ng-Switch Statements in angular, how to use ng-Switch Statements. and its use.
DateTime.TryParse And The Case Of Z Letter
May 15, 2021.
This short article aims to fill the gap in docs explaining what is ISO-8601 date format, how it is treated by DateTime.TryParse compared to other formats
Difference Between Delete, Truncate And Drop Statements In SQL Server
May 04, 2021.
This tutorial will show you the difference between delete, truncate and drop statements in SQL Server.
Kafka Features And Use Cases
Apr 02, 2021.
In this article we will be discussing some of its features and different uses cases.
Excel To Insert Statement
Mar 26, 2021.
In this article , you will learn how to make application which collect data from excel sheets and convert it into sql insert statement
Merge Statement In SQL
Feb 26, 2021.
Merge Statement is a very popular clause in SQL. It handles Insert, Update and Delete in a single query no need to write different logics for each.
Use Of If Statement In R
Dec 03, 2020.
Explore the versatile use of if statements in R for decision-making and control flow. Learn how to implement conditional logic, perform data filtering, and drive program behavior based on logical tests. Enhance your understanding of programming logic and data analysis with this fundamental concept in R.
Learn About Loops In R
Dec 03, 2020.
In this article, we will learn how to repeat the execution of certain parts of your R code using loops.
Azure Data Explorer - Working With Kusto Case Sensitivity
Nov 09, 2020.
This article explains about various approaches to handle casing scenarios for kusto query.
C# 9.0 - Introduction To Top-Level Statements
Oct 12, 2020.
In this article, you will learn about C# 9.0 - introduction to Top-Level Statements.
.NET Core Singleton Dependency Injection With Real Use Case
Sep 18, 2020.
In this article, you will learn about .NET Core Singleton Dependency Injection with a real use case.
Jump Statements Simplified With Flow Chart
Jul 28, 2020.
Our objective today, Is to understand the behaviour of jump statements in C#. Jump statements are used to transfer the control of execution from one point to another point.
About CASE-statements
NA
OUR TRAINING