如何将此声明分离到单独的文件中?

发布于 2024-12-22 20:27:00 字数 315 浏览 1 评论 0原文

我有一个非常长的字符串(下面是reallyLongString),并且想将其声明/定义放在与主代码不同的文件中。 我该怎么做?谢谢。 我可以在另一个文件中用 "publicpartial class MainWindow: Window {" and "}" 包围它吗?

namespace MyApp
{

    public partial class MainWindow : Window
    {
        string reallyLongString = "...";
     ...
     }

...
}

I have a really long string (reallyLongString below) and want to put its declaration/definition in a separate file from the main code.
How do I do that? Thanks.
Can I just surround it with "public partial class MainWindow: Window {" and "}" in another file?

namespace MyApp
{

    public partial class MainWindow : Window
    {
        string reallyLongString = "...";
     ...
     }

...
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

丶情人眼里出诗心の 2024-12-29 20:27:00

基本上是的,尽管我认为您只能指定子类型一次。因此,在一个文件中:

namespace MyApp
{   
    public partial class MainWindow : Window
    {
        // main code
    }    
    // etc...
}

在另一个文件中:

namespace MyApp
{
    public partial class MainWindow
    {
        string reallyLongString = "...";
    }
}

您还可以查看 resx 或嵌入式资源,而不是文字。

Yes basically, although I think you can only specify the sub-type once. So in one file:

namespace MyApp
{   
    public partial class MainWindow : Window
    {
        // main code
    }    
    // etc...
}

And in the other:

namespace MyApp
{
    public partial class MainWindow
    {
        string reallyLongString = "...";
    }
}

You could also look at a resx or an embedded resource, rather than a literal.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文