Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将一行数据库数据存储到一个对象中,但我不知道在 C# 中是否存在类似var的关键字。因为我想检索整行数据,而不是单独检索任何特定列。
C#:
var data=from t in TableX where t.id==100 select t;
在 C++ /CLI 中有与C# 中auto含义相同的关键字。var
auto
var
auto data=...
见这里。