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]
Naresh Beniwal(9)
Aashina Arora(4)
Jitendra Mesavaniya(3)
Mahesh Chand(3)
Jay Krishna Reddy (2)
Jignesh Kumar(2)
Sardar Mudassar Ali Khan (2)
C# Curator(2)
Sai Kumar Koona(2)
Aman Gupta(2)
Abhishek Yadav(2)
Bilal Shahzad(2)
Atul Sharma(2)
Akbar Mulla(2)
Anil Kumar Murmu(2)
Harshad Pansuriya(2)
Vijay Yadav(1)
Abhishek Chadha(1)
Hari Lakkakula(1)
Ramesh Palanivel(1)
Chandrakant Patil(1)
Jithu Thomas(1)
Swesh S(1)
Rahul Singh(1)
Ravinder Singh(1)
Sachin Mishra(1)
George (1)
Mohamed Azarudeen Z(1)
Rinki (1)
Ishika Tiwari(1)
Shivam Payasi(1)
Munesh Sharma(1)
Alagunila Meganathan(1)
Uday Dodiya(1)
Munib Butt(1)
Mukesh Sagar(1)
Rajanikant Hawaldar(1)
Mohit Kala(1)
Navin Prakash(1)
Sameer Shukla(1)
Rohit Gupta(1)
Nagaraj M(1)
Ankit Kanojia(1)
Jacek Marchel(1)
Shalini Ravi(1)
Rikam Palkar(1)
Noble Dhas(1)
Dipa Mehta(1)
Ramees (1)
Hitanshi Mehta(1)
Amit Tyagi(1)
Ajay Mor(1)
Vinoth Rajendran(1)
Divyang Desai(1)
Kapil Gaur(1)
Aakash Maurya(1)
Jeeva Subburaj(1)
Pradeep Yadav(1)
Dennis Thomas(1)
Gnanavel Sekar(1)
Gaurav Gahlot(1)
Habibur Rony(1)
Jasminder Singh(1)
Rion Williams(1)
Arjun Singh(1)
Guest User(1)
Ramakrishna Basagalla(1)
Manoj Kulkarni(1)
Saillesh Pawar(1)
Pankaj Kumar Choudhary(1)
Prakash Tripathi(1)
Kaviya Balasubramanian(1)
Rupesh Kahane(1)
Resources
No resource found
How to Seed Identity in SQL Server
Jul 03, 2024.
Discover SQL Server's IDENTITY columns for automatic unique number generation. Learn to create tables with IDENTITY, insert data without specifying IDs, seed values with DBCC CHECKIDENT, manage explicit ID insertions with IDENTITY_INSERT, and reset identity seeds using TRUNCATE TABLE.
Exploring let, var, and const in JavaScript Declarations
Jun 04, 2024.
In JavaScript, choosing between var, let, and const is crucial for code behavior and maintainability. var is function-scoped and can be redeclared, while let and const are block-scoped. let allows reassignment, and const prevents it.
Hide Base Class Members in C# .NET with new Keyword
May 30, 2024.
In C# .NET, the new keyword allows derived classes to hide members of a base class. This technique, known as member hiding or shadowing, is used to define a new implementation for a member without overriding the base class version.
Usage of “Required” Keyword in C#
May 16, 2024.
In this article, we will learn about the usage of required keywords in C#. In C# 11, the `required` keyword enforces the initialization of properties and fields within classes, records, or structs, enhancing code reliability by preventing uninitialized members and ensuring data integrity.
Var and Let and Const in JavaScript
Apr 04, 2024.
All these keywords are used frequently in application development and used to store the values. Nevertheless, at the high level, these have few common features and few differences. let us see the difference between all with practical examples.
What is Record Keyword/Function in C#?
Apr 03, 2024.
Records introduced in C# 9.0 represent a significant enhancement to the language's capability for handling data. This article aims to explore records in-depth, covering their syntax, features, and usage through illustrative examples.
What is Public Methods or Public Keyword in C#?
Apr 02, 2024.
Access modifiers play a crucial role in object-oriented programming languages like C#. They dictate the accessibility of classes, methods, properties, and other members within a program. In this article, we delve into the concept of public methods in C#, exploring their significance, usage, and best practices.
Boost Coding Productivity with Yield Keywords in C#
Mar 28, 2024.
In today's programming landscape, continuous learning is essential for developers to enhance productivity and efficiency. C# introduces new features like yield return and yield break, optimizing code execution and memory usage. Let's explore their significance through practical examples.
Understanding "out var _" in C#
Mar 11, 2024.
In this article, we will learn about the use of "out var _" in C#, a syntax that allows declaring a variable inline without specifying its type. Learn its purpose, usage, and how it enhances code readability.
Difference Between let, var, and const in JavaScript with Example
Mar 05, 2024.
In this article, I will demonstrate how to use Var, let, and const with examples. The Var, Let, and const keywords are used to declare variables in JavaScript. Choosing the right variable while writing code makes it more efficient and robust.
Synchronous vs Asynchronous Programming in ASP.NET Core Web API
Jan 21, 2024.
Synchronous Programming: In synchronous programming, tasks are executed one after the other, in a sequential manner. When a request is made to a synchronous API, the server processes the request and waits for it to be completed before moving on to the next task. This means that if one operation takes a long time to finish, it can block the execution of subsequent operations, potentially leading to slower response times for clients.Asynchronous Programming: On the other hand, asynchronous programming allows tasks to be executed concurrently. When a request is made to an asynchronous API, the server can initiate tasks and continue processing other requests without waiting for the previous tasks to be completed. This can lead to better scalability and responsiveness, especially in scenarios where certain operations, such as I/O operations, may take some time.ASP.NET Core Web API: In ASP.NET Core Web API, you have the flexibility to choose between synchronous and asynchronous programming models. The framework supports both approaches. Asynchronous programming is particularly useful when dealing with I/O-bound operations, such as accessing a database or making external API calls, where the application can continue processing other tasks while waiting for the I/O operation to complete.To implement asynchronous programming in ASP.NET Core Web API, you can use the `async` and `await` keywords in your controller methods, allowing you to write non-blocking code. This helps improve the overall performance and responsiveness of your API, especially in scenarios with high concurrency.
What Is the Difference Between var, let, and const in JavaScript?
Jan 17, 2024.
In JavaScript, var, let, and const declare variables with differences in scope, hoisting, and reassignment. Prefer let and const for better scoping, predictability, and avoidance of common bugs.
Beyond Keywords: Decoding the Hidden Meaning - Semantic Search
Dec 20, 2023.
Semantic Search represents a significant shift in how we interact with information. As technology advances, Engines will become even better at grasping complex concepts and nuances in language. As voice assistants become more sophisticated, semantic search will be crucial for accurate and natural interactions. Search engines will become personal knowledge hubs, anticipating our needs and offering relevant information even before we ask.
Using RESTSharp for CRUD Operations in ASP.NET Core Web API
Dec 19, 2023.
Utilizing RESTSharp for CRUD operations in ASP.NET Core Web API offers a streamlined approach to interacting with APIs. This library simplifies HTTP requests and responses, allowing developers to focus on implementing functionality rather than managing low-level HTTP communication.By breaking down each operation—POST, PUT, DELETE, GET, PATCH—and providing corresponding code snippets, the process of creating, retrieving, updating, and deleting resources becomes more accessible. The RestClientHelper class encapsulates RESTSharp configuration, promoting code reusability and maintainability.
How To validate Appsetting.json Configuration Values In .NET
Oct 16, 2023.
In .NET applications, the appsettings.json file is commonly used to store configuration settings. It's essential to validate the values stored in this file to ensure that they meet the required format, data type, or specific constraints defined by the application. Validation of appsettings.json configuration values in .NET involves implementing checks and safeguards to confirm that the values are valid and usable by the application. This validation process helps prevent runtime errors and ensures the application behaves as intended, adhering to the specified configuration guidelines.
Passing an argument by reference in C#
Aug 20, 2023.
This article contains useful information about how to use ref keyword in your C# program with the proper and easy to understand example.
How To Use Order By in MySQL
Jun 23, 2023.
Order by is a useful feature in MySQL that allows you to sort query results based on one or more columns in ascending or descending order. In this article, we will discuss how to use order by in MySQL with step-by-step examples.
Multi-Threading (3), async, await in C#
Jun 21, 2023.
This article will discuss Async, Wait key words in C#
Personalization Unleashed: Supercharge User Experiences with Azure Personalizer💥
May 24, 2023.
Discover the game-changing potential of Azure Personalizer! This powerful tool empowers developers to create personalized experiences that captivate and engage users like never before. By leveraging cutting-edge technologies like reinforcement learning, Azure Personalizer enables you to deliver tailor-made recommendations and content that leave a lasting impression
Native Keyword In Java
May 19, 2023.
In this article, you will learn Native Keyword in java
What is Default Keyword in Java
May 11, 2023.
In this article, you will learn about What is Default Keyword in Java
How to Use Clear Keyword An Array in C#
May 10, 2023.
In this article, you will learn about what is a Clear Keyword an array in C#
What Is Short keyword In C#
May 10, 2023.
In this article, you will learn about What is Short Keyword in C#
Simplifying Your C# Code: Why You Should Avoid Using 'Else' keyword
May 01, 2023.
In this article will be seeing the benefits of avoiding else keyword in C# programming.
Match in Rust
Apr 26, 2023.
match control flow in rust
This keyword in Java
Apr 25, 2023.
In this article, you will learn about This Keyword in Java
What is Abstract Keyword in java
Apr 22, 2023.
In this article, you will learn about What is abstract Keyword in Java
How to Remove An Element from An Array In C#
Apr 21, 2023.
In this article, you will learn about How to Remove An Element from An Array In C#?
Byte Keyword in Java
Apr 21, 2023.
In this article, you will learn Byte keyword in java.
Regular function vs Arrow function in JavaScript
Apr 20, 2023.
In this article, we will learn the difference between the regular function and the arrow function in JavaScript
Concept Of Hoisting And TDZ(Temporal Dead Zone)
Apr 20, 2023.
In this article, I'm going to Explain, how Hoisting and TDZ work in js
What Is Boolean Keyword In Java
Apr 07, 2023.
in this article, you will learn What is the boolean keyword in Java
What is the purpose of the 'async' and 'await' keywords in JavaScript?
Mar 12, 2023.
Learn what the 'async' and 'await' keywords are in JavaScript and how to use them in async code.
Yield Keyword In C#
Feb 13, 2023.
In this article, we will learn about the Yield keyword in C#
Difference Between Var, Dynamic And Object type In C#
Feb 13, 2023.
In this article, I am going to explain var, dynamic, and object keywords in detail.
Email Yourself New Tweet With Specific Keyword Using Azure Logic App
Dec 21, 2022.
In this article, we are going to learn about how to Email yourself a new tweet with specific keywords Using Azure Logic App
SQL Keyword
Dec 13, 2022.
In this article we will learn about SQL Keyword
Using The New Required Keyword In .NET 7
Dec 01, 2022.
In this article, you will learn how to use the new required keyword in .NET 7.
Search A String Entire Database (SQL Server)
Oct 20, 2022.
Searching a string in all the tables available in the SQL Server database
Type Checking in C#
Sep 27, 2022.
In this article you will learn about type checking in C#.
Difference Between Var, Let, Const In JavaScript
Aug 13, 2022.
In this article, you will learn the difference between Var, Let, Const in JavaScript.
Var, Final And Dynamic Keywords In Flutter 😎
Jul 02, 2022.
In this article, we will learn about var, final and dynamic keywords it’s more important in dart.
SETS In Python
Jun 27, 2022.
This article is dedicated to concepts of SETS in Python. Sets are one the built-in Data Structure of Python.
Demystifying ‘var’ In Java
Jan 19, 2022.
The article explains the internals of the keyword 'var' in Java.
Working With CSV In Python
Dec 16, 2021.
In this article, you will learn about CSV In Python.
Working With Async/Await/Task Keywords In Depth
Dec 13, 2021.
In this article, you will learn how to work with Async/Await/Task keywords in depth.
Classes And Objects In Python
Nov 30, 2021.
In this article, you will learn about Class and Object in Python.
How To Use Yield In Python?
Nov 09, 2021.
In this article, you will learn what is yield and how to use the yield keyword in python?
Eval Keyword In Python
Sep 29, 2021.
This article is useful to understand switcher and eval in python.
Learn About Exception Handling In Java
Apr 18, 2021.
Through this article, users will get in-depth knowledge of Exceptions and Exception handling used in Java.
Pro Tips For React Developers 🤠
Jan 28, 2021.
In this article, you will learn about Pro tips for react developers.
How To Define Variables And Constants In R
Dec 08, 2020.
In this article, I am going to explain about variables and constants in R.
Using C# Checked Keyword And .NET Numerics BigInteger
Oct 22, 2020.
In this article, you will learn about C# Checked Keyword and .NET Numerics BigInteger.
Use Of Static Keyword In Java
Aug 20, 2020.
In this article, you will learn different use-cases of static keyword in java.
Static Instance Variable And Non-Static Instance Variable Difference - Java
Aug 06, 2020.
Let see the use of static keyword with the variable and the difference between the static variable and non-static variable in Java.
Var Vs Dynamic In C#
Jun 22, 2020.
In this article, you will learn about Var vs Dynamic in C#.
Static Keyword in Java
Apr 09, 2020.
In this article, I emphasize the static keyword's various purposes in Java
React - Learn From Scratch - Part Six
Jan 28, 2020.
In this article we'll learn more about this and how we can use bind & arrow functions to use specific object as this inside function.
React - Learn From Scratch - Part Five
Jan 27, 2020.
In this post, we'll learn about JavaScript classes and then we'll learn another type of React components (i.e. Class Component.)
Comparison Between ECMAScript 5 And ECMAScript 6 Versions Of JavaScript
Jan 08, 2020.
In this article, we are going to discuss briefly the differences between ECMAScript 5 and ECMAScript 6 versions of JavaScript, as well as all the new features introduced in each of these versions. We will discuss the limitations of ES5 and what solutions were offered by ES6 version to overcome those limitations and further improve the JavaScript language .
Python Tokens Explained
Nov 30, 2019.
In my previous article, we covered how to declare variables in Python Editor Jupyter. Now, we will continue with more features and learn the concept of object-oriented programming in Python. In this article, we learn about the Python Tokens: Keywords, Identifiers, Literals and Operators.
Keywords In SEO And Their Types
Oct 31, 2019.
In this article, you will learn about Keywords in SEO and their Types.
Learn About Functions In Python
Oct 09, 2019.
This article illustrates the use of functions in Python. We will learn about different types of arguments and functions in Python and their uses.
Difference Between Var, Let And Const In JavaScript
Sep 08, 2019.
This article will explain the nuances of JavaScript variable declaration with var, let, and const. Explore their scope, hoisting behavior, and mutability. Learn when to use each for flexible and error-resistant coding.
Getting started With Ansible - Part Two (Inventory)
Aug 20, 2019.
This article is based on the inventory and modules in Ansible and we will learn how they can be used in Ansible.
ECMAScript 6 - New Feature - Overview And Comparison - Var Vs Let
Jul 16, 2019.
In this article, we will understand the difference between Var vs Let. We will also go over the block and functional scope.
Implement Multiple Inheritance In C#
May 28, 2019.
C# does not support multiple inheritance for classes in the traditional sense, meaning a class cannot inherit from more than one class. However, C# provides mechanisms to achieve similar functionality using interfaces and a concept known as "multiple interface inheritance" or "interface-based multiple inheritance.
The Top Seven Least-Known, Yet Important, C# Features
May 26, 2019.
In this article, you will learn about some of the top important C# features that are often not very well known.
Var And Var! In Microsoft Bosque Programming Language
May 17, 2019.
This article talks about the declaration of var and var! variables in Bosque programming language.
When To Use Static Classes In C#
Apr 30, 2019.
The static modifier in C# declares a static member of a class. The static modifier can be used with classes, properties, methods, fields, operators, events, and constructors, but it cannot be used with indexers, finalizers, or types other than classes.
What Does var Mean In C#?
Mar 07, 2019.
The var keyword is used to declare a var type variable in C#. In this article, you will learn how to use a var in C#.
Data Locations 🗺️ In Solidity
Feb 06, 2019.
This article talks about how to use Storage and Memory keywords in Solidity.
How To Use Dynamic To Return Different Objects On Runtime In C#
Dec 05, 2018.
A lot of time you get a requirement to return different kind of object from a single method. Is it possible? Yes there are ways by which you can deliver different objects on run time and dynamic is one of those solution.
Working With New Enhanced Feature Of ‘Ref’ Keyword In C# 7.0
Sep 20, 2018.
Here, in this article, I will try to explore the new enhanced feature of ‘ref’ keyword.
Learn SharePoint In Series - Part Fourteen - Enterprise Metadata And Keywords Settings In List
Jun 20, 2018.
Explore enterprise metadata and keyword settings in SharePoint lists. Learn to manage content classification, taxonomy, and information governance effectively within your organization's information architecture.
SQL Server Tips - SQL Server Paging Made Easy With OFFSET And FETCH Keyword
May 14, 2018.
This post contains SQL Server tips for applying paging in SQL that can be used in real-world applications for long-running processing with better performance
Var And Dynamic In C#
Apr 30, 2018.
In this article, we will try to understand use of var and dynamic keyword in C#.
Ref And Out KeyWords - Two Separated Twins
Mar 26, 2018.
In this article, I am going to explain the concepts of some useful keywords like Ref & Out parameters. These keywords are used along with the data to be passed to a function as parameter. Below I will explain a brief explanation about each of these keywords with an example.
Keywords - Const, ReadOnly, And Static ReadOnly In C#
Mar 20, 2018.
In this article, I am going to explain about const, read-only, & static keywords in C#.
An Introduction to Method Overriding - Virtual, Override And New Keywords in C# explained
Mar 06, 2018.
Use of inheritance and polymorphism has become an integral part of our life as a programmer. Inheritance provides a lot of benefits including code reusability, separation of concerns, cleaner code, extensibility etc.
Custom Extension Method In C#
Aug 23, 2017.
In C#, extension methods are a powerful feature that allows you to add new methods to existing classes without modifying their source code. A custom extension method in C# is a user-defined method that is added to an existing class or interface using the this keyword as the first parameter of the method. This enables you to invoke the extension method on instances of the target class or interface as if it were a native method.
When To Use "Var" As A Type
Jul 05, 2017.
It has been quite a long time since "var" was introduced, yet it is still a topic of debate among .net developers.
Stop Using VAR Everywhere And Think Before Using Underscore With Private Variable In C#
Jun 06, 2017.
When to use underscore(_) or not with the private member variable; why we shouldn't use var everywhere; when must we use 'var'; when can't 'var' be used. Why we need to follow best practices guidelines.
C# ref Keyword
Mar 20, 2017.
C# ref and C# out keywords are used in method parameters. This article helps you decide whether to use a ref or out keyword, especially when the parameter types are value types.
C# 7.0 - Tuples To The Extreme!
Mar 18, 2017.
C# 7.0 - Tuples to the Extreme! A C# tuple is a data structure that has a specific number and sequence of elements. An example of a C# tuple is a data structure with three elements (known as a 3-tuple or triple) that is used to store an identifier such as a person's name in the first element, a year in the second element, and the person's income for that year in the third element.
Pattern Matching In C#
Jan 10, 2017.
Pattern matching in C# is a powerful feature allowing concise and expressive code for conditional statements and type checking. It enables matching based on various patterns like types, constants, properties, tuples, and more, enhancing readability and flexibility in code logic.
Why Var Keyword Is Frequently Used In C#
May 05, 2016.
In this article you will learn why var keyword is frequently used in C#.
Voice of a Developer: Part Nine - JavaScript Useful Reserved Keywords
May 01, 2016.
In this article you will learn about JavaScript useful Reserved Keywords.
Virtual, Override And New Keywords In C#
Apr 27, 2016.
In this article you will learn about Virtual, Override, and New Keywords in C#.
Ref And Out Keywords In C#
Apr 10, 2016.
In this article, we will talk about the ref and out keywords in C#.
Learn a Tiny Bit of C# in Seven Days - Day Five
Mar 12, 2016.
In this article we will cover important topics of C# and try to unleash them practically.
"This" Keyword in C#
Feb 29, 2016.
In this article you will learn about "This" keyword in C#.
Static Keyword In C#
Feb 17, 2016.
In this article, I'll discuss the C# static keyword, its purpose, and how to create static classes using C#. I'll also cover static variables, static methods, and static properties in C#.
Dynamic Data Type In C#
Feb 08, 2016.
C# dynamic keyword declares a dynamic variable that can store any type. Lean how to use a dynamic type in C# and how to convert a dynamic type to other types in C#.
Preparing .NET Interview - Part 2 (Basic Types)
Jan 21, 2016.
This article presents the common questions asked in .NET interview related to types and explains the answers in easy way.
Add Enterprise Keyword Column In SharePoint List Using JSOM
Dec 10, 2015.
In this article I will explain a way to add the Enterprise keyword column in SharePoint List using SharePoint Hosted app.
Keywords In C# With Real Life Example
Nov 15, 2015.
In this article we will discuss about Keywords in C# with real life example.
Package Keyword In Java
Oct 31, 2015.
In this article you will learn about Package control keyword in Java.
Access Modifiers In Java
Oct 30, 2015.
Java Access Modifiers. In this article, you will learn about Access Modifiers keywords in Java.
10 Most Used Keywords In C#
Oct 23, 2015.
In this article you will learn about the most useful keywords in C# with example.
About var-keyword
NA
OUR TRAINING