0

我正在尝试使用 C# 连接到 R。我安装了 R.Net 并在我的项目中引用了它。这是我第一次尝试 C#。任何想法我做错了什么?

这是示例 C# 代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using RDotNet;

namespace RNet_Calculator
{
    public partial class Form1 : Form
    {

        // set up basics and create RDotNet instance 
        // if anticipated install of R is not found, ask the user to find it. 

        public Form1()
        {
            InitializeComponent();

            string dlldir = @"C:\Users\R\R-2.15.2\bin\x64";
            bool r_located = false;

            while (r_located == false)
            {
                try
                {
                    REngine.SetDllDirectory(dlldir);
                    REngine.CreateInstance("RDotNet");
                    r_located = true;
                }

                catch
                {
                    MessageBox.Show(@"Unable to find R installation's \bin\i386 folder. 
                    Press OK to attempt to locate it.");


                }
            }
        }
    }
}

在此处输入图像描述

在此处输入图像描述

这是 Program.cs:

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

namespace Form1
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
}
4

1 回答 1

1

这实际上与 R 无关。您可能已经在一个地方覆盖了命名空间,而不是在另一个地方。你有代码

namespace RNet_Calculator

在您的表单代码中。如果你打开Form1.designer.cs你可能会看到

namespace Form1

只需将名称空间从Form1to更改为RNet_Calculator,您的错误就会消失。

编辑

作为对您的编辑的响应,您应该将单个RNET_Calculator命名空间改回,Form1或者您也应该(但不必)更改Form1Program.cs 文件(以及项目中的任何其他文件)中的命名空间。这样做意味着您还应该更改项目属性中的命名空间。右键单击您的项目,选择“属性”,然后在“应用程序”选项卡(应该是第一个打开的选项卡)中,将“默认命名空间”文本框更改为RNET_Calculator.

于 2013-03-21T15:59:29.277 回答