Opened 16 years ago

Closed 16 years ago

#169 closed バグ (fixed)

Listの要素を削除すると、Listが壊れる

Reported by: OverTaker Owned by: dai
Priority: 高-critical Milestone: AB5 CP6
Component: Compiler Version:
Keywords: Cc:

Description

RemoveAt,Removeでリストに変更した後、リストの内容がおかしくなります。

#console
Imports System.Collections.Generic
Imports System

Dim list As List<String>
list.Add("0")
list.Add("1")
list.Add("2")
list.Add("3")
list.RemoveAt(1)

Console.Write(list)
Console.ReadLine()

Change History (1)

comment:1 by dai, 16 years ago

Resolution: fixed
Status: newclosed

[527]にて修正。

Note: See TracTickets for help on using tickets.