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