Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C# Truncate Method
Use the Truncate method in C# to remove all the numbers after decimal places.
Let’s say the following is our number −
20.35M
To remove the numbers after decimal places, use Truncate() −
decimal.Truncate(20.35M)
Let us see the comple code −
Example
using System;
using System.Linq;
class Demo {
static void Main() {
decimal dc = 20.35M;
Console.WriteLine(dc.Truncate(val));
}
}Advertisements