Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コードのこの部分に到達する前に、ここでnullをチェックする方法はありますか?
tmpLabelData(0) = m_node.Item("CONTAINER_NAME").InnerText
一部のXMLにはそれがありますが、他のXMLにはありません。これらのnullを処理するための良い方法を見つけることができないようですか?
デビッド
If Not m_node.Item("CONTAINER_NAME") Is Nothing AndAlso _ Len(m_node.Item("CONTAINER_NAME").InnerText) > 0 Then tmpLabelData(0) = m_node.Item("CONTAINER_NAME").InnerText End If