• 大小: 146KB
    文件类型: .7z
    金币: 2
    下载: 3 次
    发布日期: 2021-05-10
  • 语言: C#
  • 标签: C#  CoDeSys  共享内存  

资源简介

该例程实现C#与Codesys通过共享内存的方式完成数据交互,这样有利于垮软件平台之间进行通讯,相较于其他通信方式(Modbus、TCP/IP等)更加方便快捷。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace ShareMemory_Test
{
    static class Program
    {
        /// 
        /// 应用程序的主入口点。
        /// 

        [STAThread]
        static void Main()
        {
            Application.EnableVisualstyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new ShareMemory());
        }
    }
}

评论

共有 条评论