public ResxRow AddResxRow(string FileSource, string FileDestination, string Key, string Value)
            {
                ResxRow rowResxRow = ((ResxRow)(this.NewRow()));

                rowResxRow.ItemArray = new object[] {
                    FileSource,
                    FileDestination,
                    Key,
                    Value,
                    null
                };
                this.Rows.Add(rowResxRow);
                return(rowResxRow);
            }
            public ResxLocalizedRow AddResxLocalizedRow(string Culture, string Key, string Value, ResxRow parentResxRowByFK_Resx_ResxLocalized)
            {
                ResxLocalizedRow rowResxLocalizedRow = ((ResxLocalizedRow)(this.NewRow()));

                rowResxLocalizedRow.ItemArray = new object[] {
                    Culture,
                    Key,
                    Value,
                    null,
                    parentResxRowByFK_Resx_ResxLocalized[4]
                };
                this.Rows.Add(rowResxLocalizedRow);
                return(rowResxLocalizedRow);
            }
 public void RemoveResxRow(ResxRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddResxRow(ResxRow row)
 {
     this.Rows.Add(row);
 }
 public ResxRowChangeEvent(ResxRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }