MailboxManager.cs
上传用户:wdhx888
上传日期:2017-06-08
资源大小:112k
文件大小:1k
- using System;
- namespace EricDaugherty.CSES.Mailbox
- {
- /// <summary>
- /// Mailbox Manager is a singleton class that provides
- /// access to the current mailbox implementation.
- /// </summary>
- /// <remarks>
- /// Incomplete.
- /// </remarks>
- public class MailboxManager
- {
- #region Constructors
- /// <summary>
- /// Private constructor used by the GetInstance method to
- /// create the one and only singleton instance.
- /// </summary>
- private MailboxManager()
- {
- }
- #endregion
- #region Static Methods
- // public static MailboxManager GetInstance();
- #endregion
- }
- }