开发者

What is the C# equivalent of this VB.NET code: DataTable.GetChanges(Not DataRowState.Deleted)

开发者 https://www.devze.com 2023-02-06 20:43 出处:网络
In VB.NET: D开发者_如何学编程ataTable.GetChanges(Not DataRowState.Deleted) What is the equivalent in C#? Assuming the Not there means \"bitwise complement\"...

In VB.NET:

D开发者_如何学编程ataTable.GetChanges(Not DataRowState.Deleted)

What is the equivalent in C#?


Assuming the Not there means "bitwise complement"...

DataTable.GetChanges(~DataRowState.Deleted) 


DataTable.GetChanges(~DataRowState.Deleted);

0

精彩评论

暂无评论...
验证码 换一张
取 消