Click here to Skip to main content
15,891,204 members
Home / Discussions / C#
   

C#

 
QuestionVisio automation via C# Pin
Menhal28-Sep-07 22:49
Menhal28-Sep-07 22:49 
AnswerRe: Visio automation via C# Pin
Abisodun1-Oct-07 1:38
Abisodun1-Oct-07 1:38 
Questionto validate date Pin
P_Elza28-Sep-07 22:23
P_Elza28-Sep-07 22:23 
AnswerRe: to validate date Pin
DaveyM6928-Sep-07 23:44
professionalDaveyM6928-Sep-07 23:44 
GeneralRe: to validate date Pin
Luc Pattyn29-Sep-07 0:36
sitebuilderLuc Pattyn29-Sep-07 0:36 
GeneralRe: to validate date Pin
DaveyM6929-Sep-07 0:45
professionalDaveyM6929-Sep-07 0:45 
QuestionDifference Pin
John.L.Ponratnam28-Sep-07 21:51
John.L.Ponratnam28-Sep-07 21:51 
AnswerRe: Difference Pin
P_Elza28-Sep-07 22:14
P_Elza28-Sep-07 22:14 
Array:The Array class is the base class for language implementations that support arrays. However, only the system and compilers can derive explicitly from the Array class. Users should use the array constructs provided by the language.An element is a value in an Array. The length of an Array is the total number of elements it can contain. The rank of an Array is the number of dimensions in the Array. The lower bound of a dimension of an Array is the starting index of that dimension of the Array; a multidimensional Array can have different bounds for each dimension.Type objects provide information about array type declarations. Array objects with the same array type share the same Type object.Type.IsArray and Type.GetElementType might not return the expected results with Array because if an array is cast to the type Array, the result is an object, not an array. That is, typeof(System.Array).IsArray returns false, and typeof(System.Array).GetElementType returns a null reference (Nothing in Visual Basic).Unlike most classes, Array provides the CreateInstance method, instead of public constructors, to allow for late bound access.The Array.Copy method copies elements not only between arrays of the same type but also between standard arrays of different types; it handles type casting automatically.Some methods, such as CreateInstance, Copy, CopyTo, GetValue and SetValue
Arraylist:The capacity of an ArrayList is the number of elements the list can hold. As elements are added to an ArrayList, the capacity is automatically increased as required through reallocation. The capacity can be decreased by calling TrimToSize or by setting the Capacity property explicitly.Indexes in this collection are zero-based.ArrayList accepts a null reference (Nothing in Visual Basic) as a valid value and allows duplicate elements.
QuestionCheckBoxes problem! Pin
XFighter28-Sep-07 21:29
XFighter28-Sep-07 21:29 
QuestionGeneric XL upload with validation Pin
subbu.sk28-Sep-07 21:14
subbu.sk28-Sep-07 21:14 
Questionhow to spilit html tags and string using c# code(very urgent) Pin
Revathi Raj28-Sep-07 20:32
Revathi Raj28-Sep-07 20:32 
AnswerRe: how to spilit html tags and string using c# code(very urgent) Pin
Paul Conrad29-Sep-07 6:56
professionalPaul Conrad29-Sep-07 6:56 
AnswerRe: .net framework required??? Pin
mav.northwind28-Sep-07 19:21
mav.northwind28-Sep-07 19:21 
GeneralRe: .net framework required??? Pin
Kuldeep Antil28-Sep-07 19:25
Kuldeep Antil28-Sep-07 19:25 
GeneralRe: .net framework required??? Pin
mav.northwind28-Sep-07 19:32
mav.northwind28-Sep-07 19:32 
GeneralRe: .net framework required??? Pin
JoeRip28-Sep-07 19:40
JoeRip28-Sep-07 19:40 
GeneralRe: .net framework required??? Pin
Kuldeep Antil28-Sep-07 19:47
Kuldeep Antil28-Sep-07 19:47 
Questionc# Pin
shen1728-Sep-07 18:12
shen1728-Sep-07 18:12 
AnswerRe: c# Pin
mav.northwind28-Sep-07 18:51
mav.northwind28-Sep-07 18:51 
GeneralRe: c# Pin
DaveyM6929-Sep-07 0:01
professionalDaveyM6929-Sep-07 0:01 
AnswerRe: c# Pin
Paul Conrad29-Sep-07 7:00
professionalPaul Conrad29-Sep-07 7:00 
QuestionDeferring complex resize code, but still using Resize events Pin
JoeRip28-Sep-07 17:55
JoeRip28-Sep-07 17:55 
AnswerRe: Deferring complex resize code, but still using Resize events Pin
mav.northwind28-Sep-07 19:30
mav.northwind28-Sep-07 19:30 
GeneralRe: Deferring complex resize code, but still using Resize events Pin
JoeRip28-Sep-07 19:38
JoeRip28-Sep-07 19:38 
GeneralRe: Deferring complex resize code, but still using Resize events Pin
JoeRip27-Dec-07 22:23
JoeRip27-Dec-07 22:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.