コード例 #1
0
ファイル: XmlFunctions.cs プロジェクト: meikeric/deveeldb
        private static string GetXPath(DataObject xpath)
        {
            if (!(xpath.Type is StringType))
            {
                throw new ArgumentException();
            }

            return(xpath.AsVarChar().Value.ToString());
        }
コード例 #2
0
        private static string GetXPath(DataObject xpath)
        {
            if (!(xpath.Type is StringType))
                throw new ArgumentException();

            return xpath.AsVarChar().Value.ToString();
        }