当前位置:首页 > Windows程序 > 正文

c#中的定名实参

2024-03-31 Windows程序

标签:定名实参

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

namespace ConsoleApplication1
{
class Program
{

class Class1 { readonly string people; public string People { get {return people;} } readonly decimal price; public decimal Price { get { return price; } } public Class1(string people, decimal price) { this.people = people; this.price = price; } public static List<Class1> kkk() { return new List<Class1> { new Class1(people:"ssss",price:444m), new Class1(people:"44333rrr",price:666m), new Class1(people:"dddd",price:88m) }; } public override string ToString() { return string.Format("{0}:{1}",people,price); } static void Main(string[] args) { foreach(Class1 jjj in kkk()) { Console.WriteLine(jjj.people+‘:‘+jjj.price); } Console.ReadLine(); } } }

}

标签:定名实参

温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/file/33624.html

Jm-杰米博客Jamie
草根站长的技术交流乐园!IT不会不要紧快来好好学习吧!
  • 20786文章总数
  • 7494587访问次数
  • 建站天数
  • 友情链接