Results 1 to 4 of 4

Thread: String as Currency in C#

  1. #1
    Join Date
    Feb 2009
    Posts
    29

    String as Currency in C#

    Hello i Would like to know How Can i Format a Strings as a Currency in C#, or Any other Language , please thanks in advance

  2. #2
    Join Date
    Feb 2008
    Posts
    1,852

    Re: String as Currency in C#

    String.Format Method (String, Object)
    Replaces one or more format items in a specified string with the string representation of a specified object.

    Here is C# Sharp Example
    C#
    public static string Format(
    string format,
    Object arg0
    )

  3. #3
    Join Date
    May 2008
    Posts
    2,389

    Re: String as Currency in C#

    String.Format (String, Object) Replaces the element of formatting in a specified String with the text equivalent of the value of an instance of Object specified. it is Supported by the. NET Compact Framework.

  4. #4
    Join Date
    Oct 2005
    Posts
    2,393

    Re: String as Currency in C#

    Syntax of string.format

    var s = String.format (format, args);

    Use the format function to replace elements in the format specified by the textual representation of the corresponding object values. The args argument can contain a single object or an array of objects. The argument format contains zero or more fixed sequences of text mixed with one or more elements of format. Each format item corresponds to an object in objects. At runtime, each format is replaced by the string representation of the object in the list.

Similar Threads

  1. Nokia N8 Currency Converter
    By Jacan in forum Portable Devices
    Replies: 4
    Last Post: 19-02-2011, 10:13 AM
  2. How to Manipulate String using PHP String Functions
    By ComPaCt in forum Software Development
    Replies: 3
    Last Post: 21-09-2009, 09:07 AM
  3. Example to format currency in .net?
    By OmiWalia in forum Software Development
    Replies: 3
    Last Post: 07-08-2009, 11:49 PM
  4. How to change Currency format ?
    By Clemens in forum Windows Software
    Replies: 1
    Last Post: 30-01-2009, 02:57 PM
  5. Currency converter
    By Industrious in forum Windows Software
    Replies: 5
    Last Post: 26-11-2008, 02:42 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,751,659,176.21737 seconds with 16 queries