123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace Extensometer.BLL
- {
- public class DrawCurveClass
- {
- private static Assembly assem = Assembly.LoadFile(Environment.CurrentDirectory + "\\Extensometer.dll");
- Type[] t1 = assem.GetTypes();
- private readonly Form f1 = (Form)assem.CreateInstance("Extensometer.From.MainFrom");
-
- }
- }
|