コード例 #1
0
 public NullableScormTimeSpan(String value)
 {
     this.Value = new ScormTimeSpan(value);
 }
コード例 #2
0
 public NullableScormTimeSpan(ScormTimeSpan value)
 {
     this.Value = value;
 }
コード例 #3
0
 public ScormTimeSpan(ScormTimeSpan other)
 {
     this.Value = other.Value;
     this.Description = new LanguageString(other.Description);
 }
コード例 #4
0
 public NullableScormTimeSpan(string value)
 {
     this.Value = new ScormTimeSpan(value);
 }
コード例 #5
0
 public NullableScormTimeSpan(ScormTimeSpan value)
 {
     this.Value = value;
 }
コード例 #6
0
 public ScormTimeSpan(ScormTimeSpan other)
 {
     this.Value       = other.Value;
     this.Description = new LanguageString(other.Description);
 }