morelinq/morelinq

Extensions to LINQ to Objects

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 59 minutes ago
Type:Library / SDKCategory(s):Core & Utility LibrariesLanguages & Runtimes
Added to GitGenius on September 18th, 2026
Created on August 21st, 2015
Open Issues & Pull Requests: 109 (+0)
GitHub issues: Enabled
Number of forks: 419
Total Stargazers: 3,837 (+0)
Total Subscribers: 110 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 18.7 hours
Mean response time: 174.2 days
90th percentile: 431.8 days
Tracked items: 18

Most active contributors

Sign in to see contributor activity.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 9
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 1,112 days
Stale 30+ days: 9
Stale 90+ days: 9

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • enhancement (3)
  • good first issue (2)
  • help wanted (2)
  • Priority-Medium (1)
  • Status-Fixed (1)
  • duplicate (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

MoreLINQ is a library of extension methods that enhances LINQ to Objects with additional operators and sequence-generation capabilities for C#.

LINQ to Objects provides a foundation for querying in-memory collections, but lacks certain useful operations that developers frequently need. MoreLINQ addresses this gap by adding extension methods that operate on IEnumerable<T> types, maintaining the declarative style and composability that characterize LINQ. The library also provides static methods for generating sequences rather than transforming existing ones. To avoid naming conflicts with other libraries or future framework additions, MoreLINQ supports selective importing through C# static imports, allowing developers to bring only the methods they need into scope.

Developers should adopt MoreLINQ if they find themselves repeatedly writing utility functions for sequence manipulation or if they want a richer set of query operators without building custom extensions. The library suits projects of any scale that use LINQ extensively and benefit from operators like Acquire for managing disposable resources, Aggregate variants for complex accumulations, and sequence generators like Unfold and Random. The project is distributed as NuGet packages and includes comprehensive documentation on its homepage.

The project maintains a dev container setup for consistent development environments across platforms. Code generation relies on T4 templates, which developers can regenerate after modifications using platform-specific scripts. Documentation building is supported on Windows through Sandcastle Help File Builder integration. The build system provides cross-platform support through shell scripts for macOS and Linux alongside Windows batch files.