当前位置: 首页>>代码示例>>C#>>正文


C# SerializationInfo.GetValueWithType方法代码示例

本文整理汇总了C#中System.Runtime.Serialization.SerializationInfo.GetValueWithType方法的典型用法代码示例。如果您正苦于以下问题:C# SerializationInfo.GetValueWithType方法的具体用法?C# SerializationInfo.GetValueWithType怎么用?C# SerializationInfo.GetValueWithType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Runtime.Serialization.SerializationInfo的用法示例。


在下文中一共展示了SerializationInfo.GetValueWithType方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: IndicatorShape

 protected IndicatorShape(SerializationInfo Info, StreamingContext Context)
     : base(Info, Context)
 {
     Utils.Deserializing();
     this.Shape = (Shape)Info.GetValueWithType("Shape");
     this._IndicatorsShape = (ShapeOfIndicator)Info.GetInt32("IndicatorsShape");
     this._IndicatorsSize = Info.GetInt32("IndicatorsSize");
 }
开发者ID:Shayan-To,项目名称:OpenMesh,代码行数:8,代码来源:IndicatorShape.cs

示例2: ShapeCollection

        protected ShapeCollection(SerializationInfo Info, StreamingContext Context)
            : base(Info, Context)
        {
            Utils.Deserializing();
            this._IsSelected = Info.GetBoolean("IsSelected");
            this._IsVisible = Info.GetBoolean("IsVisible");

            var N = Info.GetInt32("Shapes.Count");
            for (int i = 0; i < N; i++)
            {
                this._Shapes.Add((ShapeBase)Info.GetValueWithType("Shapes[" + i + "]"));
            }
        }
开发者ID:Shayan-To,项目名称:OpenMesh,代码行数:13,代码来源:ShapeOfCollection.cs

示例3: ShapeBag

 protected ShapeBag(SerializationInfo Info, StreamingContext Context)
     : base(Info, Context)
 {
     Utils.Deserializing();
     this._Shapes = (IEnumerable<Shape>)Info.GetValueWithType("Shapes");
 }
开发者ID:Shayan-To,项目名称:OpenMesh,代码行数:6,代码来源:ShapeBag.cs

示例4: ShapeBase

 protected ShapeBase(SerializationInfo Info, StreamingContext Context)
 {
     Utils.Deserializing();
     this._Name = Info.GetString("Name");
     this._Parent = (ShapeBase)Info.GetValueWithType("Parent");
 }
开发者ID:Shayan-To,项目名称:OpenMesh,代码行数:6,代码来源:ShapeBase.cs


注:本文中的System.Runtime.Serialization.SerializationInfo.GetValueWithType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。