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]
Sharad Gupta(2)
Debasis Saha(2)
C# Curator(2)
Rikam Palkar(1)
Praveen Raveendran Pillai(1)
Santosh Karanam(1)
Ajay Kumar(1)
Manas Mohapatra(1)
Rizwan Ali(1)
Sudarshan Hajare(1)
Ashish Bhatnagar(1)
Vishal Babuks(1)
Rangesh Sripathi(1)
Jigar Desai(1)
Vivek Gupta(1)
Resources
No resource found
How to Pass Functions & Params in React + TypeScript
May 27, 2025.
You’re passing functions around like candy in your React app, but when TypeScript throws a tantrum, you start hacking with any or begging Google for help. Let’s fix that.
.NET 9 : Params Collections
Nov 15, 2024.
In .NET 9 the params keyword has been extended to support not only arrays but also other collection types like ReadOnlySpan<T> and IEnumerable<T>. This enhancement offers greater flexibility and potential performance improvements.
What is Params In C#?
Jan 31, 2024.
In C# programming, the "params" keyword plays a crucial role in enhancing flexibility and convenience when dealing with methods that accept a variable number of the same type of parameters.
Use of Params in TypeScript
Dec 04, 2012.
In this article I explain how to use params in TypeScript and what is needed to use them.
C# .NET 8 SQL Bulk Insert Dapper vs BulkCopy vs Table-Value Params
Jun 18, 2024.
Explore the performance of SQL bulk insert methods in C# .NET 8 by comparing Dapper, BulkCopy, and Table-Value Parameters. This comprehensive analysis covers implementation details, efficiency, and best practices for optimizing large data insertions, helping developers choose the right approach for their projects.
Params In C#: Pass Variable Number Of Parameters To Method
Oct 05, 2015.
In this article we will discuss about params keyword in C# and how to pass variable number of parameters to method.
Params Keyword With IEnumerable In C# 6.0
Jan 05, 2015.
The params keyword in C# allows you to pass a variable number of arguments of the same type to a method. This feature simplifies method calls when you need to pass a variable number of arguments without explicitly creating an array or a collection.In C# 6.0 and later, you can use the params keyword with an IEnumerable<T> parameter, enabling you to pass a variable number of items of type T as arguments to a method. This is useful when you want to work with a collection of items, and you don't know in advance how many items you'll need to pass.
Params Keyword in C#
May 20, 2013.
C# params. In this article, I explain how and what is the use of the params keyword in C#.
Diving in OOP (Polymorphism and Inheritance – Part 1)
Aug 03, 2026.
Master C# method overloading and the params keyword in this hands-on OOP guide. Learn compile-time polymorphism with practical code examples.
SQL Tag Library in Java Server Page
Mar 21, 2025.
JSTL SQL tags are used to access databases and are designed for low-volume Web-based applications.? JSTL SQL tags facilitate database interactions in JSP pages, enabling data source setup, query execution, updates, and transactions through tags like <sql:setDataSource>, <sql:query>, <sql:update>, and <sql: transaction>
Standalone Component : A new approach to design Angular Application
Aug 03, 2023.
In this article, we will discuss related to the Standalone Component in Angular Framework. We also demonstrate how we can implement it in any angular applicaiton.
Rest Assured API Automation Testing Concepts
Jun 28, 2023.
This article provides an overview of various concepts related to API automation testing using the Rest Assured library. It covers topics such as sending query parameters and path parameters, handling authentication using different methods, setting request headers, logging request, and response details, and using RequestSpecBuilder and ResponseSpecBuilder for common headers and assertions.
Learn Angular 4.0 In 10 Days - Route Process - Day Nine
Mar 08, 2018.
In this article, we will discuss about the route process for a single page application in angular 4.0.
Why Overloaded Method Differing in Out and Ref
Mar 05, 2015.
In this article you will learn why we cannot have overload a method differing only as out and ref params.
Passing parameter by param
Jun 30, 2009.
In this article I will explain you how to pass parameter/s using param keyword.
Parameter passing in C#
Jun 01, 2009.
Article to explain how parameter are passed in C#.
Read Asp.net Request Param and Session dynamically into properties
Oct 04, 2007.
This Article shows how you can use Attributes and Reflection to dynamically populate property with value from param, session or context without writing any addition code. I have used this technique in past and I hope you will also find it useful.
C# Language changes from .NET Beta 1 to .NET Beta 2
Jun 22, 2001.
This article contains C# language changes from Beta 1 to Beta 2.