Home » C# Programming » Structures

Which of the following statements is correct about the C#.NET code snippet given below? class Trial { int i; Decimal d; } struct Sample { private int x; private Single y; private Trial z; } Sample ss = new Sample();

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!