maui-linux/Xamarin.Forms.Core/IExpressionSearch.cs

12 строки
286 B
C#

using System.Collections.Generic;
using System.ComponentModel;
using System.Linq.Expressions;
namespace Xamarin.Forms.Internals
{
[EditorBrowsable(EditorBrowsableState.Never)]
public interface IExpressionSearch
{
List<T> FindObjects<T>(Expression expression) where T : class;
}
}