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

ClassNameDescription
stringretReturn value from dbreader.

Return value

ClassDescription
boolWhether 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.

Copyright © Cooker All rights reserved.