which datatype i have to use we i need dynamic size.for eg.
empname .in first row it have only five chars.but next row it
have 100 chars.
Answers were Sorted based on User's Feedback
When there is a requirement of storing different length of
characters in an array . We can use jagged arrays.
int[][] jagged = new int[3][];
jagged[0] = new int { 1,2,3 };
jagged[1] = new int { 1, 2, 3, 4, 5 };
jagged[3] = new int { 1, 2, 3, 4, 5, 6, 7, 8,9};
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / radhika
i think we can use arraylist for dynamic size
for example
arraylist al= new arraylist();
al[0]="empname";
al[1]="empname is ............";
| Is This Answer Correct ? | 3 Yes | 1 No |
Name the connections does microsoft sql server support?
Why do we need a singleton class?
What are the differences between a class and a struct?
Is c# pass by value?
What is a collection class in c#?
An abstract class is inherited, an Interface also inherited(multiple inheritance), How it differences.
What is the difference between as and is operators in c#?
List down the fundamental oop concepts?
What is the purpose of a namespace?
What is asp net c#?
What are the drawbacks of extending an interface as opposed to extending a class?
datagridview using updata in windows c#
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)