Method | Description | |
---|---|---|
FromList ( |
Get an array of double's from a string of comma separated text.
|
|
FromListInt ( |
Get an array of ints's from a string of comma separated text.
|
|
ToList ( |
Convert an array of doubles to a comma separated list.
|
|
ToList ( |
Convert an array of doubles to a comma separated list.
|
|
ToListInt ( |
Convert an array of ints to a comma separated list.
|
Method | Description | |
---|---|---|
NumberList ( ) : System |
public static FromList ( |
||
format | The way to format this list. | |
str | String | The string that contains a list of numbers. |
return | double[] |
public static FromListInt ( |
||
format | The way to format this list. | |
str | String | The string that contains a list of numbers. |
return | int[] |
public static ToList ( |
||
format | The way to format this list. | |
result | StringBuilder | This string will have the values appended to it. |
data | double | The array of doubles to use. |
return | void |
public static ToList ( |
||
format | The way to format this list. | |
precision | int | The precision. |
result | StringBuilder | This string will have the values appended to it. |
data | double | The array of doubles to use. |
return | void |
public static ToListInt ( |
||
format | The way to format this list. | |
result | StringBuilder | This string will have the values appended to it. |
data | int | The array of doubles to use. |
return | void |