NthFirstChildSelector.cs 340 Bytes
Newer Older
Eric Domke's avatar
Eric Domke committed
1
2

// ReSharper disable once CheckNamespace
Matt Schneeberger's avatar
Matt Schneeberger committed
3
namespace Svg.ExCSS
Eric Domke's avatar
Eric Domke committed
4
5
6
7
8
9
10
11
12
{
    internal sealed class NthFirstChildSelector : NthChildSelector, IToString
    {
        public override string ToString(bool friendlyFormat, int indentation = 0)
        {
            return FormatSelector(PseudoSelectorPrefix.PseudoFunctionNthchild);
        }
    }
}