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.
http://google-gdata.googlecode.com/svn-history/r902/docs/folder41/T_Google_GData_Spreadsheets_ListEntry_Custom.htm
$variable = New-Object Google.GData.Spreadsheets.ListEntry ???
$variable = New-Object Google.GData.Spreadsheets.ListEntry
これを作成する方法は?
ドットは問題ではありません。と思われる場合は、クラス名を ' で囲むことができます
アセンブリを読み込んでいない可能性があります。最初にそれを行います。
# 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