This is a short hand for System.Nullable<char>
It is an assignment (assign this nullable char a null reference, a reference that does not refer to any object).
The question mark modifies any value type that would ordinarily not allow nulls.
A char is represented by 2 bytes (they are Unicode). However, since it is nullable, sizeof calls will only work in unsafe code (because the result is unreliable and based on environment/implementation). System.Nullable is a struct and will contain a char and a bool (2 bytes and 1 byte, respectively). This totals 3 bytes, but it likely that the size of the struct will be 4 bytes, since this is probably the byte alignment of the environment/implementation being used. If the byte alignment were 8 bytes, it would be 8 bytes, etc.
sizeof(char)
//2
sizeof(char?)
//Cannot take the address of, get the size of, or declare a pointer to a managed type ('char?')
You would want to use one when you needed to signify the variable or member you are using has no value. Be careful with nullable types, many programmers feel that "nulls are to code as nails are to tires". However, if properly handled and tested, nullable variables and members can be of value to your programs reliability and readability.