mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-07-30 01:26:23 +00:00
16 lines
585 B
C#
16 lines
585 B
C#
namespace SarcWrapper.Helper
|
|
{
|
|
public static class DataExtensions
|
|
{
|
|
public static Dictionary<string, ArraySegment<byte>> filterByFolder(this Dictionary<string, ArraySegment<byte>> data, string filter)
|
|
{
|
|
return data.Where(kvp => kvp.Key.StartsWith(filter)).ToDictionary();
|
|
}
|
|
|
|
public static Dictionary<string, ArraySegment<byte>> filterByExtension(this Dictionary<string, ArraySegment<byte>> data, string filter)
|
|
{
|
|
return data.Where(kvp => Path.GetExtension(kvp.Key) == filter).ToDictionary();
|
|
}
|
|
}
|
|
}
|