我使用PowerShell编写数据库导出器。
我有DataRow
个,通过Export-Clixml 'data.xml'
序列化。这些DataRows有一列value
。
我通过$row = (Import-Clixml 'data.xml')[0]
阅读了第一行。
如果我检查它的类型,通过$row.value -is [System.Management.Automation.PSCustomObject]
我得到了
如果我在值Get-Member
上使用$row.value | Get-Member
,我会得到输出
TypeName: Deserialized.System.DBNull
我有点期待这是System.Management.Automation.PSCustomObject
。
类型Get-Member
显示我来自哪里?
答案 0 :(得分:2)
如果你看\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
M=\begin{bmatrix}
V_{1,1} & \cdots & V_{1,n}\\
\vdots & \ddots & \vdots\\
V_{m,1} & \cdots & V_{m,n}
\end{bmatrix}
\end{equation}
\end{document}
,你可能会看到equation
是列表中的第一个。
另请参阅this answer from Keith Hill和MSDN on the TypeNames property。