...
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
<SetVariable Name="$(Result)">
<String Format="#,0.##" Culture="tr-TR">
<Value Culture="" Target="Decimal">227.5670</Value>
</String>
</SetVariable>
|
Verilen numerik değeri istenilen formata sokar. 227.5000 ın çıktısı: 227 olur.
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
<SetVariable Name="$(Result)">
<String Format="#,#" Culture="tr-TR">
<Value Culture="" Target="Decimal">227.5670</Value>
</String>
</SetVariable>
|
| Info | ||
|---|---|---|
| ||
Detaylı bilgi için msdn üzerindeki ilgili makale incelenebilir. https://docs.microsoft.com/en-us/dotnet/standard/base-types/custom-numeric-format-strings |
...