File: IXmlLineInfoExtensions.cs
Web Access
Project: src\src\Controls\src\Xaml\Controls.Xaml.csproj (Microsoft.Maui.Controls.Xaml)
using System.Xml;
 
namespace Microsoft.Maui.Controls.Xaml;
 
static class IXmlLineInfoExtensions
{
	public static IXmlLineInfo Clone(this IXmlLineInfo xmlLineInfo)
	{
		return new XmlLineInfo(xmlLineInfo.LineNumber, xmlLineInfo.LinePosition);
	}
}