Like Typedef(In C++) operation what is option in C#.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?U3dhcG5pbA==?=

    Like Typedef(In C++) operation what is option in C#.

    hi,

    we can use Typedef in C++ . To perform the same operation in C# How can i
    use?
    Please Explain with example.
  • =?Utf-8?B?TWlzYmFoIEFyZWZpbg==?=

    #2
    RE: Like Typedef(In C++) operation what is option in C#.

    //C++
    typedef int NUMBERS;

    //C#
    using NUMBERS = System.Int32;

    --
    Misbah Arefin




    "Swapnil" wrote:
    hi,
    >
    we can use Typedef in C++ . To perform the same operation in C# How can i
    use?
    Please Explain with example.

    Comment

    Working...