将原始字节转换为 .NET 中的类型
我在 SQL DB 中有 COM 对象 (ESRI IPOINT) 的原始字节。我想以某种方式强制将其强制转换为 IPOINT。我尝试将 IPoint p = object 作为 IPOINT 但失败了。是否有一些黑客方法可以将原始字节强制转换为未编写转换器的对象?
I have the raw bytes of a COM object (ESRI IPOINT) in a SQL DB. I want to somehow force the casting of it to an IPOINT. I tried IPoint p = object as IPOINT which failed. Is there some hacky way to force raw bytes into an object for which there isn't a converter written?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来您正在尝试访问地理数据库文件。
以下是有关建立连接的一些信息:连接到个人地理数据库 和如何连接到地理数据库
It sounds like you're trying to access a GeoDatabase file.
Here's some info on making a connection: Connect to a Personal Geodatabase and How to connect to a geodatabase
我想正确的方法是使用 QueryFilter,
I guess the appropriate way is to do this is to use a QueryFilter,