Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1024351
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T11:45:58+00:00 2026-05-16T11:45:58+00:00

How could I compile a .cs program that references a COM DLL from the

  • 0

How could I compile a .cs program that references a COM DLL from the command line?

Assume I have COM DLL with the following path: C:\Projects\com1.dll
Assume C# code is in file: C:\Projects\program.cs

I’ve tried this
csc.exe /lib:”C:\Projects” /reference:com1.dll “C:\Projects\program.cs”

hoping to get program.exe This fails so the references for COM dlls by this method is wrong route.

— Adding specifics in reference to first answer —
Okay assuming in this case I’m using ADO

tlbimp "C:\Program Files\Common Files\Syste \ado\msador15.dll"

Get this response

Type library imported to ADOR.dll

Now placing that new DLL created by tlbimp into the same directory as a program that has using ADODB in it:

csc /lib:. /reference:ADOR.dll Program.cs

Returns

Program.cs(2,7): error CS0246: 
The type or namespace name 'ADODB' could not be found 
(are you missing a using directive or an assembly reference?)

— Overloads Issue —

using System;
using ADODB;

class Program
{
    static void Main(string[] args)
    {
        Connection connection = new Connection();
        connection.Open(args[0]);
        //connection.Open(args[0], "", "", -1);
        Console.WriteLine(connection.State);
        connection.Close();
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T11:45:58+00:00Added an answer on May 16, 2026 at 11:45 am

    You’ll need to create an interop assembly with tlbimp (or by hand) and reference that, not the COM dll directly. You’ll run tlbimp on com1.dll and then reference Interop.com1.dll (or whatever you call the interop) that tlbimp generates. Note that to use tlbimp the COM component must have a type library.

    tlbimp’s default namespace is going to be Interop.Foo, not Foo, if you want to specify Foo you need to use /namespace:Foo.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Could anyone help me compile via command line some c# files? I have 4
I have the following line of code in my program which I took from
I have a c program that calls sin, cos, and acos. When I compile
I'm wondering if anyone knows of a PHP library that I could compile into
Could anyone please tell me why the following casting is resulting in compile time
Could someone know where is saved path to external XML-File that contain configuration for
I am writing a program that could very much use __sync_fetch_and_add . Unfortunately my
I have a C# 4.0 application that is referencing a type library from a
I have a program that I wrote in ActionScript 3 that I have been
I have been trying to use g++ to compile a program with SDL. The

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.