예제 #1
0
        private static string GetResource(params string[] path)
        {
            var bytes = ResourceUtility.ReadAllBytes(true, path);

            return(XmlUtility.ToXmlDocument(Encoding.UTF8.GetString(bytes)).OuterXml);
        }
        private static string GetResource(params string[] path)
        {
            var bytes = ResourceUtility.GetMemoryStream(path).ToArray();

            return(XmlUtility.ToXmlDocument(Encoding.UTF8.GetString(bytes)).OuterXml);
        }