• C#类型转换测试小程序


    
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;

    namespace TestStringToNum
    {
    class Program
    {
    static void Main(string[] args)
    {
    String str
    = "15.23";
    int i = 2;
    float f = 1.2f;
    Double du
    = 0.33;

    Type tDouble
    = du.GetType();
    Type tInt
    = i.GetType();
    Type tFloat
    = f.GetType();

    try
    {
    du
    = Double.Parse(str);
    }
    catch (Exception e)
    {
    Console.WriteLine(e.Message.ToString());
    }
    try
    {
    i
    = int.Parse(str);
    }
    catch (Exception e)
    {
    Console.WriteLine(e.Message.ToString());
    }
    try
    {
    f
    = float.Parse(str);
    }
    catch(Exception e)
    {
    Console.WriteLine(e.Message.ToString());
    }
    }
    }
    }
  • 相关阅读:
    日报10.11
    日报10.9
    日报10.8
    日报10.7
    换马甲啦
    CSP2019知识点整理
    字符logo存档
    QHDYZ模拟赛20191027 提前透题
    数竞大佬jhc的三角函数复习题
    IO流
  • 原文地址:https://www.cnblogs.com/gavinsp/p/2026586.html
Copyright © 2020-2023  润新知