Home » C# Programming » Constructors

Which of the following ways to create an object of the Sample class given below will work correctly? class Sample { int i; Single j; double k; public Sample (int ii, Single jj, double kk) { i = ii; j = jj; k = kk; } }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!