コード例 #1
0
ファイル: Request.cs プロジェクト: zhangz/Highlander.Net
 public void Set(Name name, Datetime elementValue)
 {
     this.Set(name.ToString(), elementValue);
 }
コード例 #2
0
ファイル: Request.cs プロジェクト: zhangz/Highlander.Net
 public virtual void Set(string name, Datetime elementValue)
 {
     throw new NotImplementedException("BEmu.Request.Set: Datetime is not implemented");
 }
コード例 #3
0
ファイル: Datetime.cs プロジェクト: rowlandwatkins/BEmu
 public Datetime(Datetime other)
 {
     this._instance = other._instance;
     this._dateTimeType = other._dateTimeType;
 }
コード例 #4
0
ファイル: Datetime.cs プロジェクト: zhangz/Highlander.Net
 public Datetime(Datetime other)
 {
     this._instance     = other._instance;
     this._dateTimeType = other._dateTimeType;
 }
コード例 #5
0
ファイル: Request.cs プロジェクト: rowlandwatkins/BEmu
 public virtual void Set(string name, Datetime elementValue)
 {
     throw new NotImplementedException("BEmu.Request.Set: Datetime is not implemented");
 }
コード例 #6
0
ファイル: Request.cs プロジェクト: rowlandwatkins/BEmu
 public void Set(Name name, Datetime elementValue)
 {
     this.Set(name.ToString(), elementValue);
 }