For many applications, you want to create and manage groups of related objects. There are two ways to group objects: by creating arrays of objects, and by creating collections of objects. Arrays are most useful for creating and working with a fixed number of strongly typed objects. For information about arrays, see Arrays.
Tag
dotnet development
All blogs tagged with dotnet development
2
Articles
63,419
Total Views
Showing 2 of 2 articles
31
Dec
2022
Complete Guide to C# Collections with Examples and Tips
10
Sep
2020
Implement Stripe Payment Gateway In ASP.NET
This tutorial demonstrates how to accept payments with Stripe Checkout in an ASP.NET application built with C# and Web Forms. The application uses Checkout to accept credit cards from the end user and send tokens to a back-end API. The back-end controller uses the Stripe .NET library to create a charge. There are four steps: Create the project and configure dependencies Create the payment Web Form Create a page to perform the charge Run the application