CBidis / CSharp8583

C# Implementation of the ISO-8583 banking protocol
GNU Lesser General Public License v2.1
24 stars 23 forks source link

Missing implementation for ISO #5

Closed M4iku closed 9 months ago

M4iku commented 2 years ago

I am trying to add an ASCII (ISOXXXXXXXXX) but I don't have a Tag for it, how can I solve this problem?

crypticspawn commented 1 year ago

If you need a new Field, you can use CustomField, and then add the tags for it.

public class CustomField140 : CustomField { [Tag(position: 0, tagName: "00", define the rest of the tag here)] public virtual string Tag00 { get; set; } }