你的位置:首页 > 软件开发 > ASP.net > C#问题

C#问题

发布时间:2016-06-23 00:00:05
1.结构体里面是否可以有属性?  可以有属性。实测代码以及截图。In C#, we can use the following statement to convert a string s to an integer num 124  A.int num = Convert.T ...

C#问题

1.结构体里面是否可以有属性?

  可以有属性。实测代码以及截图。

In C#, we can use the folloget='_blank'>wing statement to convert a string s to an integer num 124

  A.int num = Convert.ToInt32(s);

  B.int nym = Int32.Parse(s);

  C.int num = s.ToInt();(不可以)

  D.int num = int.Parse(s);(测试可以过)

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Fraction{  public struct StructTest  {    private int x;    public int X    {      get { return x; }      set { x = value; }    }    public StructTest(int _x)    {      x = _x;    }  }  class Program  {    static void Main(string[] args)    {      StructTest str = new StructTest();      str.X = 1;      Console.WriteLine(str.X);      string s = "123";      int num1 = Convert.ToInt32(s);      int num2 = Int32.Parse(s);      //int num3 = s.ToInt();      int num4 = int.Parse(s);      Console.WriteLine("num1="+num1);      Console.WriteLine("num2="+num2);      //Console.WriteLine(num3);      Console.WriteLine("num4="+num4);      Console.Read();    }  }}

原标题:C#问题

关键词:C#

C#
*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录