0

http://google-gdata.googlecode.com/svn-history/r902/docs/folder41/T_Google_GData_Spreadsheets_ListEntry_Custom.htm

$variable = New-Object Google.GData.Spreadsheets.ListEntry ???

如何创建这个?

4

2 回答 2

2

点不是问题。如果您认为是,可以将类名括在 '

您可能没有加载程序集。先这样做。

# PowerShell 3
Add-Type -Path 'C:\Path\To\Your\Assembly.dll' 

# PowerShell 2
[System.Reflection.Assembly]::LoadFrom('C:\Path\To\Your\Assembly.dll') | Out-Null
于 2013-05-22T17:00:16.730 回答
-1

$variable = 新对象 [Google.GData.Spreadsheets.ListEntry]

于 2013-05-22T14:10:11.950 回答