| 123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using TalentICTGXControl;
- namespace Core.StlMes.Client.Mcp.Common
- {
- class IcReadWrite
- {
- private static TalentICTGXControl.TalentICTGXClass icClass;
- public static TalentICTGXClass getIcClass()
- {
- if (icClass == null)
- {
- icClass = new TalentICTGXControl.TalentICTGXClass();
- }
- return icClass;
- }
- }
- }
|