コード例 #1
0
 internal object this[ProtocolLog.Field field]
 {
     get
     {
         if (this.row != null)
         {
             return(this.row[(int)field]);
         }
         return(null);
     }
     set
     {
         if (this.row != null)
         {
             this.row[(int)field] = value;
         }
     }
 }
コード例 #2
0
ファイル: ProtocolLog.cs プロジェクト: YHZX2013/exchange_diff
 public FieldInfo(ProtocolLog.Field field, string columnName)
 {
     this.Field      = field;
     this.ColumnName = columnName;
 }