MSDNの例を使用して、DataSet に新しいレコードを追加しました。簡単にするために、同じ変数名を使用しました。
C# コード
NorthwindDataSet.CustomersRow newCustomersRow =
northwindDataSet1.Customers.NewCustomersRow();
newCustomersRow.CustomerID = "5";
newCustomersRow.CompanyName = "Alfreds Futterkiste";
northwindDataSet1.Customers.Rows.Add(newCustomersRow);
私が得ているエラーはThe name 'northwindDataSet1' does not exist in the current context
MSDN から直接コードを使用しているので、これは奇妙だと思います。
私の DataSet は NorthwindDataSet と呼ばれ、テーブルは Customers と呼ばれます。私は試しnorthwindDataSet
ましたが、それでも同じエラーです。