Method Overloading in C#
Posted by BrentFerree
on Wednesday, September 24, 2003 (EST)
|
|
Method overloading lets you create multiple interface signatures for the same method.
(Read More... )
Average Rating:  |
|
Arrays in C#
Posted by BrentFerree
on Wednesday, September 24, 2003 (EST)
|
|
C# supports three kinds of arrays: single-dimensional arrays, rectangular multidimensional arrays, and jagged multidimensional arrays (essentially an array of arrays). C# uses 1-based indexing.
(Read More... )
Average Rating:  |
|
Custom Exception Class
Posted by BrentFerree
on Wednesday, September 24, 2003 (EST)
|
|
Create a custom exception class that derives from the base ApplicationException class, so you can pick and choose which Exception parameters you want to include in your custom exception.
(Read More... )
Average Rating:  |
|