CacheableStringCreate Method (Char) |
Static function to create a new instance copying from
the given character array.
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic static CacheableString Create(
char[] value
)
Public Shared Function Create (
value As Char()
) As CacheableString
public:
static CacheableString^ Create(
array<wchar_t>^ value
)
static member Create :
value : char[] -> CacheableString
Parameters
- value
- Type: SystemChar
the character array value of the new instance
Return Value
Type:
CacheableString
Remarks
Providing a null or zero size character array will return a null
CacheableString object.
See Also