dbreader class : IsString(string) method
Description
Returns a value that indicates whether the argument is enclosed in double quotes.
Syntax
instance.IsString(string ret)
Arguments
| Class | Name | Description |
| string | ret | Return value from dbreader. |
Return value
| Class | Description |
| bool | Whether the argument is enclosed in double quotes. |
Sample code
| 1: | string ss = "".DQ + "string" + "".DQ; // "string" |
| 2: | dbreader dbr; |
| 3: | bool iss = dbr.IsString(ss); // true |
Notes
All the return values from the dbreader class are converted to strings and returned. If the original value is a string, the original value is enclosed in double quotes.
Determines if the original value is a string.
Links for reference
None.


