From 032da41b76bf3e920ccc5e71026b5aead9bfd807 Mon Sep 17 00:00:00 2001 From: Ron Petrusha Date: Tue, 3 Jul 2018 08:06:14 -0700 Subject: [PATCH] Corrected file extension for tlbimp.exe --- .../how-to-generate-interop-assemblies-from-type-libraries.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/framework/interop/how-to-generate-interop-assemblies-from-type-libraries.md b/docs/framework/interop/how-to-generate-interop-assemblies-from-type-libraries.md index 35abea6d41e57..1f53afe8168f3 100644 --- a/docs/framework/interop/how-to-generate-interop-assemblies-from-type-libraries.md +++ b/docs/framework/interop/how-to-generate-interop-assemblies-from-type-libraries.md @@ -26,13 +26,13 @@ The [Type Library Importer (Tlbimp.exe)](../../../docs/framework/tools/tlbimp-ex The following command produces the Loanlib.dll assembly in the `Loanlib` namespace. ``` -tlbimp Loanlib.dll +tlbimp Loanlib.tlb ``` The following command produces an interop assembly with an altered name (LOANLib.dll). ``` -tlbimp LoanLib.dll /out: LOANLib.dll +tlbimp LoanLib.tlb /out: LOANLib.dll ``` ## See Also