我有以下结构:
Structure StruRentalItem
<VBFixedString(4)> Public ItemID As String
<VBFixedString(20)> Public Name As String
<VBFixedString(30)> Public Description As String
<VBFixedString(10)> Public PricePerDay As String
<VBFixedString(4)> Public QuantityAvailable As String
End Structure
我用它来从文件中读取记录但是这会在结构的所有成员中留下尾随空格,因为我使用的是固定长度的记录。
如何在结构的所有成员上执行.Trim函数。