Good Morning: I am trying to adapt a part of a C# program (Forms) for Cobol and there is a part that I don't understand. For example: this.Amount=operation.Amount; this.Date=operation.Date; this.Destination=operation.Destination; is converted to: set self::Amount to operation::Amount set self::Date to operation::Date set self::Destination to operation::Destination
What is the "this." statement and how to use the converted statement "self ::".
Thanks
Alberto Ferraz



