我正在使用 vb.net 2010,我想提取当年的最后 2 位数字。
例如,2013 应该返回 13。
我正在使用以下代码:
Dim sid_1 As String = Year(Now) 'or Year(Now).ToString
sid_1 = sid_1.Substring(sid_1.Length, 2) 'highlighted error
但它返回一个错误:
ArgumentOutOfRangeException was unhandled
Index and length must refer to a location with the string.
Parameter name: length