C:\zxf\MyIPMngr\IPMngr>dir /b *.cs >mak.mak
C:\zxf\MyIPMngr\IPMngr>C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\csc /r:libmy
SQL-4.0.dll libmySQL.dll MySQLDriverCS.dll SnmpComp.dll /t:exe /out:IPMngr.exe @mak.mak

解决方案 »

  1.   

    要引用dot net 程序集才行。libmySQL-4.0.dll libmySQL.dll 好像是MySQL的链接库另外指定引用文件列表时文件名之间用逗号或分号分隔
    csc /r:libmySQL-4.0.dll,libmySQL.dll,MySQLDriverCS.dll,SnmpComp.dll /t:exe /out:IPMngr.exe
      

  2.   

    又出现了下列问题,怎摸班?
    C:\zxf\MyIPMngr\IPMngr>C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\csc /r:libmy
    SQL-4.0.dll libmySQL.dll MySQLDriverCS.dll SnmpComp.dll /out:IPMngr.exe @mak.makMicrosoft (R) Visual C# .NET Compiler version 7.10.3052.4
    for Microsoft (R) .NET Framework version 1.1.4322
    Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.error CS2015: 'c:\zxf\MyIPMngr\IPMngr\libmySQL.dll' is a binary file instead of
            a source code file
    error CS1504: Source file 'c:\zxf\MyIPMngr\IPMngr\libmySQL.dll' could not be
            opened ('Unspecified error ')
    error CS2015: 'c:\zxf\MyIPMngr\IPMngr\MySQLDriverCS.dll' is a binary file
            instead of a source code file
    error CS1504: Source file 'c:\zxf\MyIPMngr\IPMngr\MySQLDriverCS.dll' could not
            be opened ('Unspecified error ')
    error CS2015: 'c:\zxf\MyIPMngr\IPMngr\SnmpComp.dll' is a binary file instead of
            a source code file
    error CS1504: Source file 'c:\zxf\MyIPMngr\IPMngr\SnmpComp.dll' could not be
            opened ('Unspecified error ')C:\zxf\MyIPMngr\IPMngr>
      

  3.   

    我在家里是用VS.net开发的,我现在在客户现场,为了调试一个小的错误,我真的必须去装庞大的VS.net吗?请高手救就我吧
      

  4.   

    http://www.yesky.com/SoftChannel/72342380468109312/20011030/202721_1.shtml这篇文章应该能救你。