# C1.WPF.Binding.Expression.op_Implicit

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_WPF_Binding_Expression_op_Implicit_" data-uid="C1.WPF.Binding.Expression.op_Implicit*">implicit operator Operator
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_WPF_Binding_Expression_op_Implicit_" data-uid="C1.WPF.Binding.Expression.op_Implicit*"></a>
<h4 id="C1_WPF_Binding_Expression_op_Implicit_C1_WPF_Binding_Expression__System_String" data-uid="C1.WPF.Binding.Expression.op_Implicit(C1.WPF.Binding.Expression)~System.String">implicit operator string(Expression)</h4>
<div class="markdown level1 summary"><p>Evaluates the expression and returns the result converted to a string.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public static implicit operator string(Expression x)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Shared Widening Operator CType(x As Expression) As String</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="C1.WPF.Binding.Expression.html">Expression</a></td>
      <td><span class="parametername">x</span></td>
      <td><p><a class="xref" href="C1.WPF.Binding.Expression.html">Expression</a> to evaluate and convert.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><p>Expression value as a string.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="C1_WPF_Binding_Expression_op_Implicit_" data-uid="C1.WPF.Binding.Expression.op_Implicit*"></a>
<h4 id="C1_WPF_Binding_Expression_op_Implicit_C1_WPF_Binding_Expression__System_Double" data-uid="C1.WPF.Binding.Expression.op_Implicit(C1.WPF.Binding.Expression)~System.Double">implicit operator double(Expression)</h4>
<div class="markdown level1 summary"><p>Evaluates the expression and returns the result converted to a double.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public static implicit operator double(Expression x)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Shared Widening Operator CType(x As Expression) As Double</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="C1.WPF.Binding.Expression.html">Expression</a></td>
      <td><span class="parametername">x</span></td>
      <td><p><a class="xref" href="C1.WPF.Binding.Expression.html">Expression</a> to evaluate and convert.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.double">double</a></td>
      <td><p>Expression value as a double.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="C1_WPF_Binding_Expression_op_Implicit_" data-uid="C1.WPF.Binding.Expression.op_Implicit*"></a>
<h4 id="C1_WPF_Binding_Expression_op_Implicit_C1_WPF_Binding_Expression__System_Boolean" data-uid="C1.WPF.Binding.Expression.op_Implicit(C1.WPF.Binding.Expression)~System.Boolean">implicit operator bool(Expression)</h4>
<div class="markdown level1 summary"><p>Evaluates the expression and returns the result converted to a Boolean value.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public static implicit operator bool(Expression x)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Shared Widening Operator CType(x As Expression) As Boolean</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="C1.WPF.Binding.Expression.html">Expression</a></td>
      <td><span class="parametername">x</span></td>
      <td><p><a class="xref" href="C1.WPF.Binding.Expression.html">Expression</a> to evaluate and convert.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
      <td><p>Expression value as a Boolean value.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="C1_WPF_Binding_Expression_op_Implicit_" data-uid="C1.WPF.Binding.Expression.op_Implicit*"></a>
<h4 id="C1_WPF_Binding_Expression_op_Implicit_C1_WPF_Binding_Expression__System_DateTime" data-uid="C1.WPF.Binding.Expression.op_Implicit(C1.WPF.Binding.Expression)~System.DateTime">implicit operator DateTime(Expression)</h4>
<div class="markdown level1 summary"><p>Evaluates the expression and returns the result converted to a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.datetime">DateTime</a> value.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public static implicit operator DateTime(Expression x)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Shared Widening Operator CType(x As Expression) As Date</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="C1.WPF.Binding.Expression.html">Expression</a></td>
      <td><span class="parametername">x</span></td>
      <td><p><a class="xref" href="C1.WPF.Binding.Expression.html">Expression</a> to evaluate and convert.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.datetime">DateTime</a></td>
      <td><p>Expression value as a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.datetime">DateTime</a> value.</p>
</td>
    </tr>
  </tbody>
</table>
</div>
