المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : C++ to C# (struct)



C# Programming
05-28-2009, 03:00 AM
Hi.
Could you guide me what the equal of this struct is in C# ?

struct chromo_typ
{
//the binary bit string is held in a std::string
string bits;

float fitness;

chromo_typ(): bits(""), fitness(0.0f){};
chromo_typ(string bts, float ftns): bits(bts), fitness(ftns){}
};

Thanks