Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 163691
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T11:36:42+00:00 2026-05-11T11:36:42+00:00

Why is there so may ways to convert to a string in .net? The

  • 0

Why is there so may ways to convert to a string in .net? The ways I have seen are .ToString, Convert.ToString() and (string). What is the Difference.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T11:36:42+00:00Added an answer on May 11, 2026 at 11:36 am

    Convert.ToString(obj)

    Converts the specified value to its equivalent String representation. Will return String.Empty if specified value is null.

    obj.ToString()

    Returns a String that represents the current Object. This method returns a human-readable string that is culture-sensitive. For example, for an instance of the Double class whose value is zero, the implementation of Double.ToString might return ‘0.00’ or ‘0,00’ depending on the current UI culture. The default implementation returns the fully qualified name of the type of the Object.

    This method can be overridden in a derived class to return values that are meaningful for that type. For example, the base data types, such as Int32, implement ToString so that it returns the string form of the value that the object represents. Derived classes that require more control over the formatting of strings than ToString provides must implement IFormattable, whose ToString method uses the current thread’s CurrentCulture property.

    (string)obj

    It’s a cast operation, not a function call. Use it if you’re sure that the object is of type string OR it has an implicit or explicit operator that can convert it to a string. Will return null if the object is null AND of type String or of type which implements custom cast to string operator. See examples.

    obj as string

    Safe cast operation. Same as above, but instead of throwing an exception it will return null if cast operation fails.


    Hint: Don't forget to use CultureInfo with obj.ToString() and Convert.ToString(obj)

    Example:

    12345.6D.ToString(CultureInfo.InvariantCulture);          // returns 12345.6 12345.6D.ToString(CultureInfo.GetCultureInfo('de-DE'));   // returns 12345,6 Convert.ToString(12345.6D, CultureInfo.InvariantCulture); // returns 12345.6 Convert.ToString(12345.6D, CultureInfo.GetCultureInfo('de-DE'));  // 12345,6 Convert.ToString(test);  // String.Empty, 'test' is null and it's type                          // doesn't implement explicit cast to string oper. Convert.ToString(null);  // null (string) null;           // null (string) test;           // wont't compile, 'test' is not a string and                          // doesn't implement custom cast to string operator (string) test;           // most likely NullReferenceException,                          // 'test' is not a string,                          // implements custom cast operator but is null (string) test;           // some value, 'test' is not a string,                          // implements custom cast to string operator null as string;          // null 

    Here is an example of custom cast operator:

    public class Test {     public static implicit operator string(Test v)     {         return 'test';     } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

It may not be best practice but are there ways of removing unsused classes
Using ASP.NET MVC there are situations (such as form submission) that may require a
There may be more than one way to ask this question, so here's a
There may be situations where I would need to find an object by parameters
During software development, there may be bugs in the codebase which are known issues.
I am trying to match floating-point decimal numbers with a regular expression. There may
With a JTree, assuming the root node is level 0 and there may be
TextMate may be the best editor out there, but is has a big disadvantage:
This may be a matter of style, but there's a bit of a divide
It seems to me there are other functional dependencies you may wish to declare

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.