拡張メソッドと演算子
Extension methods enable you to add methods to existing types thereby providing additional functionality without the need to edit or recompile the code.
メソッドの呼び出し
You can invoke a method in two ways: by using the invoke statement or by using the inline invocation syntax.
マネージ COBOL での演算子のオーバーロード
You can overload operators to provide alternative behavior, or behavior for different operand types.
マネージ COBOL での文字列の処理
Managed COBOL provides a predefined managed string type and provides powerful techniques for handling strings.
型と型変換
Types can be converted into other types using the AS syntax or a conversion operator.
マネージ COBOL と他のマネージ言語の型の互換性
Many managed COBOL types have a strict correspondence with managed types in other languages, such as binary-long and float-short. For those that don't have a correspondence, there are alternatives.
ネイティブ COBOL からマネージ コードへのタイプ マッピング
COBOL data items are exposed as managed types, when the code is compiled with the ILSMARTLINKAGE directive.