This commit is contained in:
GG Z
2025-07-31 20:12:24 +08:00
parent 4f6cd2137c
commit f209e7d3ad
426 changed files with 15854 additions and 6612 deletions

View File

@@ -16,7 +16,7 @@ using System.Windows.Media.Imaging;
namespace ShrlAlgoToolkit.Core.Assists;
public class ImageAssist
public static class ImageAssist
{
/// <summary>
/// 提取资源

View File

@@ -5,7 +5,6 @@
/// </summary>
public static class DistinctExtensions
{
public static IEnumerable<T> Distinct<T>(
this IEnumerable<T> source, Func<T, T, bool> comparer)
where T : class
@@ -29,7 +28,7 @@ public static class DistinctExtensions
private sealed class CommonEqualityComparer<T, V> : IEqualityComparer<T>
{
private Func<T, V> keySelector;
private readonly Func<T, V> keySelector;
public CommonEqualityComparer(Func<T, V> keySelector)
{

View File

@@ -12,9 +12,6 @@ namespace ShrlAlgoToolkit.Core.Extensions;
public static class ImageExtensions
{
/// <summary>
/// 位图转图片
/// </summary>