summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Build.Tasks/CompiledConverters/ICompiledTypeConverter.cs
blob: 5ed88d0a58278037ae7a2e908ff5907d5eaaf1fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Collections.Generic;
using Mono.Cecil.Cil;
using Mono.Cecil;
using System.Xml;

namespace Xamarin.Forms.Xaml
{
	interface ICompiledTypeConverter
	{
		IEnumerable<Instruction> ConvertFromString(string value, ModuleDefinition module, BaseNode node);
	}
}