Syntax
| C# |
|---|
public double Time { get; } |
Remarks
Example
| C# |
|---|
Vrml.EAI.Event.VrmlEvent evt = ...;
System.DateTime t = new System.DateTime(1970, 1, 1, 0, 0, 0, 0, System.DateTimeKind.Utc).AddSeconds(evt.Time).ToLocalTime();
System.Console.WriteLine("Time = " + t);
|