示例#1
0
文件: Centroid.cs 项目: cofiem/egret
 public void Write(IEmitter emitter, ObjectSerializer nestedObjectSerializer)
 {
     nestedObjectSerializer.Invoke(new[] {
         this.StartSeconds,
         this.LowHertz,
     }, typeof(Interval[]));
 }
示例#2
0
文件: TimeRange.cs 项目: cofiem/egret
 public void Write(IEmitter emitter, ObjectSerializer nestedObjectSerializer)
 {
     nestedObjectSerializer.Invoke(new[] {
         StartSeconds,
         EndSeconds,
     }, typeof(Interval[]));
 }