Click here to Skip to main content
15,896,444 members
Articles / Programming Languages / C#

How to use a memory-mapped file with C# in WinCE

Rate me:
Please Sign up or sign in to vote.
4.62/5 (11 votes)
13 Dec 2013CPOL 43.7K   606   13  
How to use a memory-mapped file with C# in WinCE.
using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace ShareA
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [MTAThread]
        static void Main()
        {
            Application.Run(new frmMain());
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect SIS
Taiwan Taiwan
CloudBox cross-platform framework. (iOS+ Android)
Github: cloudhsu
My APP:
1. Super Baby Pig (iOS+Android)
2. God Lotto (iOS+Android)
2. Ninja Darts (iOS)
3. Fight Bingo (iOS)

Comments and Discussions