csharpfftfsharpintegrationinterpolationlinear-algebramathdifferentiationmatrixnumericsrandomregressionstatisticsmathnet
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
948 B
24 lines
948 B
<if condition="properties.Count() > 0">
|
|
<h3 class="section">${title}</h3>
|
|
|
|
<div id="${property.Name}" class="method" each="var property in properties">
|
|
<h4>${Format(property.ReturnType)} <strong>${h(property.Name)}</strong> <if condition="property.HasGet">get;</if> <if condition="property.HasSet">set;</if></h4>
|
|
<div class="content">
|
|
<comment content="property.Summary" />
|
|
<remarks content="property.Remarks" />
|
|
<if condition="property.IsObsolete">
|
|
<div id="warning">
|
|
<b>Obsolete:</b> ${property.ObsoleteReason}
|
|
</div>
|
|
</if>
|
|
|
|
<div class="return" if="property.ReturnType.HasDocumentation">
|
|
<h5>Property type</h5>
|
|
<h6><code>${Format(property.ReturnType)}</code></h6>
|
|
<p><comment content="property.ReturnType.Summary" /></p>
|
|
</div>
|
|
<value content="property.Value" />
|
|
<example content="property.Example" />
|
|
</div>
|
|
</div>
|
|
</if>
|