我知道 C# 不支持“With”代码块。但是,如何在 C# 中编写以下代码块:
string SomeString = String.Empty;
With CType(Lookups.LookupManager.Lookups.Item(GetType(Lookups.SomeLists)), Lookups.SomeLists)
SomeString = .SomeDataTableProperty.SomeColumn.ColumnName
End With
谢谢!