Beispiel #1
0
        public virtual Field29B setNarrative(string value)
        {
            IList <string> lines = SwiftParseUtils.getLines(value);

            SwiftParseUtils.setComponentsFromLines(this, 1, 4, 0, lines);
            return(this);
        }
Beispiel #2
0
        /// <summary>
        /// Parses the parameter value into the internal components structure.
        /// <br>
        /// Used to update all components from a full new value, as an alternative
        /// to setting individual components. Previous component values are overwritten.
        /// </summary>
        /// <param name="value"> complete field value including separators and CRLF
        /// @since 7.8 </param>
//JAVA TO C# CONVERTER WARNING: 'final' parameters are not allowed in .NET:
//ORIGINAL LINE: @Override public void parse(final String value)
        public override void parse(string value)
        {
            init(4);
            IList <string> lines = SwiftParseUtils.getLines(value);

            SwiftParseUtils.setComponentsFromLines(this, 1, null, 0, lines);
        }