AnalyzeRawProtobuf.FieldOptions.FieldOptions C# (CSharp) Method

FieldOptions() public method

Initializes a new instance of the FieldOptions class.
public FieldOptions ( ) : System.Collections.Generic
return System.Collections.Generic
        public FieldOptions()
        {
            Ctype = CType.STRING;
            Packed = default(bool);
            Lazy = false;
            Deprecated = false;
            ExperimentalMapKey = string.Empty;
            Weak = false;
            UninterpretedOptions = new List<UninterpretedOption>();
        }
FieldOptions