System.Xml.Xsl.Xslt.XsltLoader.AddInstruction C# (CSharp) Method

AddInstruction() private static method

private static AddInstruction ( List content, XslNode instruction ) : void
content List
instruction XslNode
return void
        private static void AddInstruction(List<XslNode> content, XslNode instruction)
        {
            Debug.Assert(content != null);
            if (instruction != null)
            {
                content.Add(instruction);
            }
        }