将 CLOB 传递到 .net dll 中
我想知道是否可以将 CLOB(8k 字符串)传递给 .net dll? dll 可以接收的内容是否有最大限制?
I wanted to know if it were possible to pass a CLOB (8k String) to a .net dll?
Is there max limit on what a dll can receive?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不是 100% 清楚你所说的“传递给 dll”是什么意思。
如果您的意思是调用参数为字符串的方法,那么我认为您受字符串长度的限制,即 Int32.MaxValue 或 2,147,483,647 个字符。
I'm not 100% clear on what you mean by "pass to a dll".
If you mean calling a method where the parameter is a string then I think your bound by string length, which is Int32.MaxValue or 2,147,483,647 characters.