Progress Monitor for IdealProgrammer.com
Take Swift, Intelligent, Massive, Planned, Loving, Effective (S.I.M.P.L.E.) Action to Transform Self into Ideal
Skip Repetitive Navigational Links
Home
News
Presenters
Register
Contact
Categories
Titles
Converter
Code Samples
C# ASP.NET
C# Console
HTML
JavaScript
SQL Server
VB ASP.NET
VB Console
Please login
C-Sharp FormatPercent Example - FormatPercent - Sample Code
Description:
Illustrates the C# Syntax for FormatPercent.
Example Class Main:
using System; public class clsFormatPercent { public void Main() { //**************************************************************************************** // Syntax: FormatPercent (Expression As Object, _ // NumDigitsAfterDecimal As Integer, _ // IncludeLeadingDigit As TriState, _ // UseParensForNegativeNumbers As TriState, _ // GroupDigits As TriState _ // ) As String // // Returns an expression formatted as a percentage (that is, multiplied by 100) with // a trailing % character. // // Expression - Required - Expression to be formatted // NumDigitsAfterDecimal - Optional - Numeric value indicating how many places are displayed // to the right of the decimal. Default value is –1, which indicates that the computer's // regional settings are used. // IncludeLeadingDigit - Optional. TriState enumeration that indicates whether or not a // leading zero is displayed for fractional values. // UseParensForNegativeNumbers - Optional. TriState enumeration that indicates whether // or not to place negative values within parentheses. // GroupDigits - Optional. TriState enumeration that indicates whether or not numbers are // grouped using the group delimiter specified in the computer's regional settings. //**************************************************************************************** Console.WriteLine("Example #1: FormatPercent (Expression As Object," + " NumDigitsAfterDecimal As Integer," + " IncludeLeadingDigit As TriState," + " UseParensForNegativeNumbers As TriState," + " GroupDigits As TriState " + " ) As String "); double dblNumber = -5432.43; // Returns "(543,243.000)". Console.WriteLine(Microsoft.VisualBasic.Strings.FormatPercent(dblNumber, 3, Microsoft.VisualBasic.TriState.UseDefault, Microsoft.VisualBasic.TriState.True, Microsoft.VisualBasic.TriState.True)); //write blank line to make output easier to read Console.WriteLine(); //Prevent console from closing before you press enter Console.ReadLine(); } }
Example Class Program:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CSharp_Syntax { class Program { static void Main(string[] args) { clsFormatPercent myFormatPercent = new clsFormatPercent(); myFormatPercent.Main(); } } }
Home
News
Presenters
Register
Contact
Categories
Titles
Converter
Code Samples
C# ASP.NET
C# Console
HTML
JavaScript
SQL Server
VB ASP.NET
VB Console