CSharpForBeginners.LessonsHelper 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package CSharpForBeginners.LessonsHelper --version 1.0.1
                    
NuGet\Install-Package CSharpForBeginners.LessonsHelper -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CSharpForBeginners.LessonsHelper" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CSharpForBeginners.LessonsHelper" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="CSharpForBeginners.LessonsHelper" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CSharpForBeginners.LessonsHelper --version 1.0.1
                    
#r "nuget: CSharpForBeginners.LessonsHelper, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CSharpForBeginners.LessonsHelper@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CSharpForBeginners.LessonsHelper&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=CSharpForBeginners.LessonsHelper&version=1.0.1
                    
Install as a Cake Tool

CSharpForBeginners.LessonsHelper

Interactive web-based learning helper for C# beginners by Serhii Boiko from My Skill Crafts. This library provides React-based UI components for educational content, making it easy to create engaging learning experiences.

Features

  • 🎯 Interactive Web UI: Built-in React components for educational content
  • 📚 Section-based Learning: Organized by C# learning sections
  • 🎨 Modern Design: Clean, responsive web interface
  • 🔄 Real-time Updates: Server-Sent Events for dynamic content updates
  • 📦 Easy Integration: Simple API for adding to your C# learning projects

Quick Start

Installation

dotnet add package CSharpForBeginners.LessonsHelper

Basic Usage

using CSharpForBeginners.LessonsHelper;

// Example: Arrays vs Lists lesson
string[] array = { "item1", "item2", "item3" };
List<string> list = new List<string> { "item1", "item2" };

Section5.Lesson1.ShowArraysVsList(
    array, list, 
    arraySize: array.Length,
    listInitialCount: 2,
    listAfterAdding: 3,
    listFinalCount: 3
);

Available Lessons

Section 5 - Arrays and Collections
  • Lesson 1: Arrays vs Lists - When Each Makes Sense
  • Lesson 2: Generics Made Simple - What T Means

API Reference

Section5.Lesson1

ShowArraysVsList(string[] array, List<string> list, int arraySize, int listInitialCount, int listAfterAdding, int listFinalCount)

Displays an interactive comparison between arrays and lists.

Parameters:

  • array: The array to display
  • list: The list to display
  • arraySize: Size of the array
  • listInitialCount: Initial count of list items
  • listAfterAdding: Count after adding items
  • listFinalCount: Final count of list items

Section5.Lesson2

ShowGenerics<T>(T[] items)

Demonstrates generic types with interactive examples.

Parameters:

  • items: Array of items to display (type T)

Requirements

  • .NET 9.0 or later
  • Modern web browser for viewing interactive content

License

MIT License - see LICENSE file for details.

About the Author

This package is created by Serhii Boiko from My Skill Crafts - your trusted partner in C# education and development.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Support

If you encounter any issues or have questions, please open an issue on GitHub or contact My Skill Crafts.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net9.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.3 115 10/25/2025
1.0.2 225 9/21/2025
1.0.1 217 9/21/2025
1.0.0 211 9/21/2025