HeroStats Libraries
DetailData.Add Method 

[This is preliminary documentation and subject to change.]

Adds a detail entry

[Visual Basic]
Public Sub Add( _
   ByVal statistic As String, _
   ByVal time As Date, _
   ByVal value As Double, _
   ByVal replace As Boolean _
)
[C#]
public void Add(
   string statistic,
   DateTime time,
   double value,
   bool replace
);

Parameters

statistic
The text of the statistic to record
time
The time that the statistic was created. Will be rounded down to the nearest minute
value
The value of the statistic
replace
If true, the value will replace any existing value for that statistic/time combination. If false, the value will be added.

See Also

DetailData Class | HeroStats.StatsEngine Namespace