作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
据我所知,具体实现接口(interface) :)查看 DateTime 结构似乎实现了 ISerializable。假设要实现:
void GetObjectData(SerializationInfo info, StreamingContext context);
我在 DateTime 的元数据上找不到这个实现。还有:
DateTime.Now.GetObjectData(null,null);
似乎抛出编译时异常。我还没有检查 ILSpy ...
想法?
最佳答案
ISerializable 是 explicity implemented .您可以这样调用该方法:
ISerializable now = DateTime.Now;
now.GetObjectData(null, new StreamingContext());
//don't send null for the first parameter
关于c# - 日期时间缺少 GetObjectData。或者我错过了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24389438/
我无法在附加行中显示“真”、“假”、"is"和“否”按钮。 我在这里有一个应用程序:Application 请按照以下步骤使用应用程序: 1。当你打开应用程序时,你会看到一个绿色的加号按钮,点击 在此
我是一名优秀的程序员,十分优秀!