1
Reply

Are C++ and C# structure the Same.?

    NO.In C++ struct Defines a class type. So Struct and class are nearly Same in C++. the difference is that the members of class are By Default private and Members of struct are By Default Public. But in C#, C# defines a value typeand Class Defines a reference type.