зеркало из https://github.com/DeGsoft/maui-linux.git
15 строки
352 B
C#
15 строки
352 B
C#
using System;
|
|
|
|
namespace System.Maui.Xaml
|
|
{
|
|
internal interface IExpressionParser
|
|
{
|
|
object Parse(string match, ref string expression, IServiceProvider serviceProvider);
|
|
}
|
|
|
|
internal interface IExpressionParser<out T> : IExpressionParser
|
|
where T : class
|
|
{
|
|
new T Parse(string match, ref string expression, IServiceProvider serviceProvider);
|
|
}
|
|
} |