Afterglow.Graphics.TriangleParser.ParseUIntArray C# (CSharp) Method

ParseUIntArray() public static method

Parses the given element as int array.
public static ParseUIntArray ( System.Xml.Linq.XElement intArray ) : IEnumerable
intArray System.Xml.Linq.XElement The element containing the int array.
return IEnumerable
        public static IEnumerable<uint> ParseUIntArray(XElement intArray)
        {
            return intArray.Value.Split(' ')
                .Select(s => Convert.ToUInt32(s, CultureInfo.InvariantCulture));
        }