forked from ServiceStack/ServiceStack.Text
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModelWithCommonTypes.cs
More file actions
59 lines (43 loc) · 1.17 KB
/
ModelWithCommonTypes.cs
File metadata and controls
59 lines (43 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
namespace ServiceStack.Text.Benchmarks
{
public class ModelWithCommonTypes
{
public char CharValue { get; set; }
public byte ByteValue { get; set; }
public sbyte SByteValue { get; set; }
public short ShortValue { get; set; }
public ushort UShortValue { get; set; }
public int IntValue { get; set; }
public uint UIntValue { get; set; }
public long LongValue { get; set; }
public ulong ULongValue { get; set; }
public float FloatValue { get; set; }
public double DoubleValue { get; set; }
public decimal DecimalValue { get; set; }
public DateTime DateTimeValue { get; set; }
public TimeSpan TimeSpanValue { get; set; }
public Guid GuidValue { get; set; }
public static ModelWithCommonTypes Create(byte i)
{
return new ModelWithCommonTypes
{
ByteValue = i,
CharValue = (char)i,
DateTimeValue = new DateTime(2000, 1, 1 + i),
DecimalValue = i,
DoubleValue = i,
FloatValue = i,
IntValue = i,
LongValue = i,
SByteValue = (sbyte)i,
ShortValue = i,
TimeSpanValue = new TimeSpan(i),
UIntValue = i,
ULongValue = i,
UShortValue = i,
GuidValue = Guid.NewGuid(),
};
}
}
}