これが私のクラスです:
public class ContainerData
{
private List<Dictionary<Contour<Point> , int>> ratioContoursCollection = new List<Dictionary<Contour<Point>,int>>();
public List<Dictionary<Contour<Point>, int>> ratioContoursCollcProperty
{
get { return ratioContoursCollection; }
set { ratioContoursCollection = value; }
}
}
クラスのインスタンスを作成しました:
ContainerData _CD = new ContainerData();
for ループで と_CD
の輪郭を埋める必要があります。newTriangleRation
for(i = 0; i < 5; i++)
{
double newTriangleRatio = someFunc();
Contour<Point> contours = someFunc2();
// assignment have to be here!!!
}
どうすれば実装できますか?