コード例 #1
0
ファイル: BclHelpers.cs プロジェクト: zhangbo27/SimpleBinary
 public static DateTime ReadDateTime(ProtoReader source)
 {
     ProtoReader.State state = source.DefaultState();
     return(ReadDateTime(source, ref state));
 }
コード例 #2
0
ファイル: BclHelpers.cs プロジェクト: zhangbo27/SimpleBinary
 public static decimal ReadDecimal(ProtoReader reader)
 {
     ProtoReader.State state = reader.DefaultState();
     return(ReadDecimal(reader, ref state));
 }
コード例 #3
0
ファイル: BclHelpers.cs プロジェクト: zhangbo27/SimpleBinary
 public static TimeSpan ReadDuration(ProtoReader source)
 {
     ProtoReader.State state = source.DefaultState();
     return(ReadDuration(source, ref state));
 }