Y otra duda :Como se crea esto en C#?Código: Texttypedef struct { MatPair mat_chartinfo_a[MAT_CHART_MAX]; MatPair mat_chartinfo_z[MAT_CHART_MAX]; int mat_similitude[MAT_CHART_MAX]; MatAffin mat_affinfactor; unsigned short mat_score; short mat_status; } MatSubResult; Teniendo en cuenta:Código: Text int MAT_CHART_MAX = 192;
Código: Textpublic int const MAT_CHART_MAX = 192; public struct MatSubR{ MatPair mat_chartinfo_a[MAT_CHART_MAX]; MatPair mat_chartinfo_z[MAT_CHART_MAX]; int mat_similitude[MAT_CHART_MAX]; MatAffin mat_affinfactor; ushort mat_score; short mat_status; }
debes inicializarlo posterior a la creacion de la instanciaya que dentro del propio struct no te lo permitira.