2

我正在使用OpenNetCF 的 IoC 框架,我的 Program 类中的代码如下所示:

public class Program : SmartClientApplication<Container>
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [MTAThread]
        static void Main()
        {
            if (!string.Equals(RegionInfo.CurrentRegion.EnglishName, "New Zealand") ||
                !string.Equals(TimeZone.CurrentTimeZone.StandardName, "New Zealand Standard Time"))
            {
                MessageBox.Show("Please set your regional and time zone settings to New Zealand.");
                return;
            }

            AppDomain.CurrentDomain.UnhandledException += CurrentDomainUnhandledException;

            new Program().Start();
        }

        static void CurrentDomainUnhandledException(object sender, UnhandledExceptionEventArgs e)
        {
            if (Debugger.IsAttached)
            {
                Debugger.Break();
            }
        }
    }

我已将 OpenNETCF 复制到我的解决方案中,并且我期待在调用 Program().Start() 时它会跳转到此处的 start 方法,因此我在其上设置了一个断点:

public abstract class SmartClientApplication<TShell>
    where TShell : Form
{
    /// <summary>
    /// This method loads the Profile Catalog Modules by calling GetModuleInfoStore which, unless overridden, uses a DefaultModuleInfoStore instance.
    /// It then creates an instance of TShell and calls Application.Run with that instance.
    /// </summary>
    public void Start()
    {
        // load up the profile catalog here
        IModuleInfoStore store = GetModuleInfoStore();

        Start(store);
    }

奇怪的是它从来没有达到断点。

我觉得这很奇怪,所以我在 Program 中单击以导航到从继承引用到 SmartClientApplication 的定义。

这打开了一个与我期望的完全不同的文件,看起来像:

using OpenNETCF.IoC;
using System;
using System.Windows.Forms;

namespace OpenNETCF.IoC.UI
{
    public abstract class SmartClientApplication<TShell> where TShell : System.Windows.Forms.Form
    {
        protected SmartClientApplication();

        public virtual void AddServices();
        protected virtual void AfterShellCreated();
        public virtual IModuleInfoStore GetModuleInfoStore();
        public virtual void OnApplicationRun(Form form);
        public virtual void OnModuleLoadComplete(string moduleName);
        public void Start();
        public void Start(string profileCatalog);
    }
}

同名但内容似乎不包含任何实现。当我看到它的位置时,它类似于:

C:\Users\myusername\AppData\Local\Temp\7212$OpenNETCF.IoC.UI.dll$v2.0.50727\OpenNETCF.IoC.UI.SmartClientApplication.cs

所以这就解释了为什么它没有达到断点,但我想知道的是为什么它甚至在查看这个疯狂的文件而不是它应该是的文件。

4

1 回答 1

2

听起来您的开发机器上有多个源和 PDB 副本。如果您构建了一个 IoC 示例,然后将文件夹批发(包括 obj 和 bin 文件夹)复制到您的应用程序路径,则可能会发生这种情况。

解决方案(或至少是一个开始)是执行以下操作:

  • 从您的项目中删除 IoC 引用
  • 构建生成错误
  • 打开资源管理器并从解决方案树中删除所有 obj 和 bin 文件夹
  • 重新添加参考
  • 重建
于 2012-01-06T00:11:21.473 回答