直接打开文件
我用 C# 创建了一个文本编辑器,并为我的程序使用的 XML 文件使用了特殊的文件扩展名。当我从 Windows 上下文菜单中使用“打开方式...”时,我的程序无法读取该文件,并且出现错误。
我该如何解决这个问题?
I created a text editor in C# and I use a special file extension for the XML file that my program uses. When I use "Open With..." from the Windows context menu, my program doesn't read the file and I get an error.
How do I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在
Main()
方法中,您需要捕获文件名:然后您需要将
fileName
传递给打开文件的代码。如何做到这一点取决于您。如果您的
Main()
方法没有参数,只需添加string args[]
参数,运行时将负责使用命令行参数填充数组。如果您已经这样做了,那么这可能是一个超级用户问题。
In your
Main()
method, you need to capture the file name:Then you'll need to pass
fileName
to the code that opens the file. How you do that is up to you.If your
Main()
method has no parameters, just add thestring args[]
parameter and the runtime will take care of populating the array with the commandline parameters.If you are already doing that, then this is probably a SuperUser question.
但 Main 就像它
没有任何参数
but the Main like that
it doesn't have any parameters
您可以使用这个简单的代码来回答我
在 richtextbox1 中查看的文本
you can use this simple code to answer me
the text viewed in the richtextbox1