哥们放弃吧,我研究这个这两天已经决定转战C#了,我已经用C#弄出来了。这种半吊子的开发平台还是不要学的好,浪费生命。估计这玩意的下场和曾经的易语言一样。一壶水烧到80摄氏度就放弃,永远也喝不到开水。作者: Li小彬 时间: 2024-4-27 13:43
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SolidWorks.Interop.sldworks;
using SolidWorks.Interop.swconst;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
//定义一个sldworks类型的变量swapp
SldWorks swapp;
//生成一个sldworks实例
swapp = new SldWorks();
//设置swapp的可见属性为真
swapp.Visible = true;
if (swapp != null)
Console.WriteLine("连接成功");
Console.ReadKey();