在这个问题中,用户评论说从不在VB中使用With块.为什么?
"从不"是一个强有力的词.
我觉得只要你不滥用它就好(比如筑巢)
恕我直言 - 这是更好的:
With MyCommand.Parameters .Count = 1 .Item(0).ParameterName = "@baz" .Item(0).Value = fuz End With
比:
MyCommand.Parameters.Count = 1 MyCommand.Parameters.Item(0).ParameterName = "@baz" MyCommand.Parameters.Item(0).Value = fuz