RecordType.RecordType C# (CSharp) Метод

RecordType() публичный Метод

public RecordType ( TypeCode, typecode, string name, bool is_container, bool do_read, int min_record_size, int max_record_size ) : Gsf
typecode TypeCode,
name string
is_container bool
do_read bool
min_record_size int
max_record_size int
Результат Gsf
    RecordType(TypeCode  typecode, string name, bool    is_container, bool    do_read, int min_record_size, int max_record_size)
    {
        this.typecode = typecode;
        this.name = name;
        this.is_container = is_container;
        this.do_read = do_read;
        this.min_record_size = min_record_size;
        this.max_record_size = max_record_size;
    }