Someone could tell me how to convert the #declare statement in C#?

And how can I define an alias for data types?

And this what does it mean? What's the :1 and :2?

struct MyStruct
{
uint member_a : 1;
uint member_b : 2;
}

Thank you!