什麼是「免費」這個對象的替代品?它通常在調用.Exit()
方法時發生,但在這種情況下,我不能這樣做,因爲應該關閉單詞應用程序實例的用戶。我以爲要做wordApp = null
或致電GC.Collect();
什麼是最好的解決方案,爲什麼?提前致謝。如何「免費」Microsoft.Office.Interop.Word.Application wordApp實例?
我使用這個目前:
public static void Free()
{
if (wordApp != null)
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(wordApp);
GC.Collect();
}
}
設爲空值。做marshal.releasecomobject並調用GC.collect –
謝謝我現在正在使用它。 – Jack