IsPublic auf AiPromptbausteinPrompt + Routine

This commit is contained in:
2026-06-19 13:30:51 +02:00
parent 6fd35b72aa
commit 5b57e7a380
5 changed files with 203 additions and 56 deletions

View File

@@ -37,7 +37,7 @@ namespace BS.Shared.Extensions
public static void RemoveRange<T>(this ICollection<T> pList, Predicate<T> pMatch)
{
var lToDelete = pList.Where(t => pMatch(t)).ToHashSet();
var lToDelete = pList.Where(t => pMatch(t)).ToHashSetEx();
pList.RemoveRange(lToDelete);
}

View File

@@ -152,7 +152,7 @@ namespace BS.Shared.Extensions
return result.ToString();
}
public static HashSet<T> ToHashSet<T>(this IEnumerable<T> pList)
public static HashSet<T> ToHashSetEx<T>(this IEnumerable<T> pList)
{
return new HashSet<T>(pList);
}