反射命名空间是用 C# 编写 quine 的构建块吗?
我是否需要使用反射来为 C# 编写 quine 程序? 我在其他地方读到 - quine 从磁盘打开源文件是“作弊” 所以我猜想使用 .net 反射器和/或使用 System.IO 打开源文件是一种黑客行为。
除了使用反射之外,我还应该考虑其他方法吗?
Do I need to use reflection to write a quine program for C#?
I read elsewhere - quine that opening the source file from disk is "cheating"
So I guess using .net reflector and/or opening the source file using System.IO is a hack.
Are there other ways other than using Reflection that I should be considering.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,你不需要反射或其他任何东西来制作奎因,只需要一点字符串操作和一些时间。
这里是另一个具有类似主题的堆栈溢出问题。
上面的 quine 来自此处。
Actually you don't need reflection or anything else to make a quine, just a little string manipluation and some time.
Here is another stack overflow question with a similar theme.
The above quine is from here.