Click here to Skip to main content
15,886,873 members
Home / Discussions / C#
   

C#

 
GeneralRe: DrawCurve Thickness/Width ? Pin
Luc Pattyn2-Jul-09 17:24
sitebuilderLuc Pattyn2-Jul-09 17:24 
GeneralRe: DrawCurve Thickness/Width ? Pin
CPallini2-Jul-09 21:21
mveCPallini2-Jul-09 21:21 
GeneralRe: DrawCurve Thickness/Width ? Pin
dan!sh 2-Jul-09 18:47
professional dan!sh 2-Jul-09 18:47 
GeneralRe: DrawCurve Thickness/Width ? Pin
PIEBALDconsult2-Jul-09 20:07
mvePIEBALDconsult2-Jul-09 20:07 
QuestionCreating a 2 Dimension List<string> Pin
Douglas Kirk2-Jul-09 16:06
Douglas Kirk2-Jul-09 16:06 
AnswerRe: Creating a 2 Dimension List<string> Pin
_Maxxx_2-Jul-09 16:28
professional_Maxxx_2-Jul-09 16:28 
GeneralRe: Creating a 2 Dimension List<string> Pin
Douglas Kirk2-Jul-09 16:33
Douglas Kirk2-Jul-09 16:33 
GeneralRe: Creating a 2 Dimension List<string> Pin
Luc Pattyn2-Jul-09 16:43
sitebuilderLuc Pattyn2-Jul-09 16:43 
O, I see. There is nothing two-dimensional about that, it is just two normal lists, which you may or may not store in an array, i.e.
<code>List<string>[] twoLists=new List<string>[2];
twoLists[0]=new List<string>();
twoLists[1]=new List<string>();


I don't see much potential benefit from putting both lists in one array though, as you are going to pass one or the other to some methods. Keeping them separate allows you to use more meaningful names.

Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]

DISCLAIMER: this message may have been modified by others; it may no longer reflect what I intended, and may contain bad advice; use at your own risk and with extreme care.

GeneralRe: Creating a 2 Dimension List&lt;string&gt; Pin
PIEBALDconsult2-Jul-09 17:27
mvePIEBALDconsult2-Jul-09 17:27 
GeneralRe: Creating a 2 Dimension List&lt;string&gt; Pin
Luc Pattyn3-Jul-09 4:30
sitebuilderLuc Pattyn3-Jul-09 4:30 
AnswerRe: Creating a 2 Dimension List&lt;string&gt; Pin
Luc Pattyn2-Jul-09 16:37
sitebuilderLuc Pattyn2-Jul-09 16:37 
QuestionCreating batch file to install/uninstall C# app Pin
steve_rm2-Jul-09 15:11
steve_rm2-Jul-09 15:11 
AnswerRe: Creating batch file to install/uninstall C# app Pin
Arindam Sinha2-Jul-09 23:54
Arindam Sinha2-Jul-09 23:54 
QuestionIf (null == something) or if (something == null) Pin
_Maxxx_2-Jul-09 13:38
professional_Maxxx_2-Jul-09 13:38 
AnswerRe: If (null == something) or if (something == null) [modified] Pin
Luc Pattyn2-Jul-09 13:52
sitebuilderLuc Pattyn2-Jul-09 13:52 
AnswerRe: If (null == something) or if (something == null) Pin
Dave Doknjas2-Jul-09 14:15
Dave Doknjas2-Jul-09 14:15 
AnswerRe: If (null == something) or if (something == null) Pin
Thomas Weller2-Jul-09 14:18
Thomas Weller2-Jul-09 14:18 
AnswerRe: If (null == something) or if (something == null) Pin
PIEBALDconsult2-Jul-09 15:11
mvePIEBALDconsult2-Jul-09 15:11 
AnswerRe: If (null == something) or if (something == null) Pin
_Maxxx_2-Jul-09 18:03
professional_Maxxx_2-Jul-09 18:03 
GeneralRe: If (null == something) or if (something == null) Pin
Moim Hossain2-Jul-09 22:08
Moim Hossain2-Jul-09 22:08 
GeneralRe: If (null == something) or if (something == null) Pin
moon_stick3-Jul-09 1:03
moon_stick3-Jul-09 1:03 
GeneralRe: If (null == something) or if (something == null) Pin
PIEBALDconsult3-Jul-09 8:27
mvePIEBALDconsult3-Jul-09 8:27 
AnswerRe: If (null == something) or if (something == null) Pin
btough2-Jul-09 22:08
btough2-Jul-09 22:08 
QuestionDrawing a smooth line graph Pin
Rsesky0002-Jul-09 12:44
Rsesky0002-Jul-09 12:44 
AnswerRe: Drawing a smooth line graph Pin
Luc Pattyn2-Jul-09 12:58
sitebuilderLuc Pattyn2-Jul-09 12:58 

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.