Swi-cs-pl - A CSharp class library to connect .NET languages with SWI-Prolog
Explicit Operator
SwiPlCs interfaceSbsSW.SwiPlCsPlTermExplicitNarrowingExplicitExplicitExplicit(PlTerm to String)
Converts the Prolog argument into a string which implies Prolog atoms and strings are converted to the represented text or throw a PlTypeException.
Declaration Syntax
C#Visual BasicVisual C++F#
public static explicit operator string (
	PlTerm term
)
Public Shared Narrowing Operator CType ( 
	term As PlTerm
) As String
static explicit operator String^ (
	PlTerm term
)
F# does not support the declaration of new casting operators.
Parameters
term (PlTerm)
A PlTerm that can be converted to a string
Return Value
String
A C# string
Remarks

Converts the Prolog argument using PL_get_chars() using the flags CVT_ALL|CVT_WRITE|BUF_RING, which implies Prolog atoms and strings are converted to the represented text or throw a PlTypeException.

If the above call return 0 PL_get_chars is called a second time with the flags CVT_ALL|CVT_WRITE|BUF_RING|REP_UTF8.

All other data is handed to write/1.

Exceptions
ExceptionCondition
PlTypeExceptionThrows a PlTypeException exception
PreconditionExceptionIs thrown if the operator is used on an uninitialized PlTerm

Assembly: SwiPlCs (Module: SwiPlCs.dll) Version: 1.1.60601.0 (1.1.60601.0)