IDL Complex Type | |
constant | The CORBA constant defines some unchanged values within the current scope. It maps to C#'s const type. |
// CORBA IDL |
// // Case #1 : defiine constant inside an module // module test { const long foo = 1; } |
// C# -- TBD -- | |
// CORBA IDL |
// // Case #2 : define constant inside an interface // interface test { const long foo = 1; } |
// C# -- TBD -- |
|
// CORBA IDL |
// // Case #3 : define constant inside an valuetype // // CORBA IDL valuetype test { const long foo = 1; } |
// C# -- TBD |