PowerShell: Performance of .NET methods calls - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:17:25Z http://stackoverflow.com/feeds/question/606312 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/606312/powershell-performance-of-net-methods-calls 1 PowerShell: Performance of .NET methods calls Andrey Shchekin 2009-03-03T13:04:40Z 2009-03-03T13:25:50Z <p>Is it possible to call a .NET method from PowerShell with early binding?</p> <p>I have a pipeline script which calls a single .NET method in <code>process {...}</code>. PowerShell calls this method via reflection, and right now <code>Invoke</code> (not the method itself, just reflection call) takes 70% of total execution time.</p> <p>The method is always the same, so I would prefer to ask PowerShell not to use reflection at all.</p> http://stackoverflow.com/questions/606312/powershell-performance-of-net-methods-calls/606388#606388 3 Answer by JaredPar for PowerShell: Performance of .NET methods calls JaredPar 2009-03-03T13:25:50Z 2009-03-03T13:25:50Z <p>I believe the only types of method call that is early bound in PowerShell, or at least as early bound as is possible in a dynamic language, are the following</p> <ol> <li>CmdLets. </li> <li>Static Methods</li> </ol> <p>I'm not as sure about #2. I believe they still have to use reflection to get at the underlying method.</p> <p>CmdLets are likely the better choice here. In that case the actual call is bound early, but the parameters still must undergo a conversion process. Try moving your method call into a CmdLet and seeing if that helps you out. </p>