using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GrammaOfCS6
{
class Functions
{
public DateTime InitTime { get; } = DateTime.Now;
public string TypeOfIt => string.Format("{0}", typeof(Functions));
public int GetMax(int left, int right) => Math.Max(left, right);
public int GetMin(int left, int right) => Math.Min(left, right);
public string GetFirstName(string fullname)
{
return fullname?.Split(' ')[0];
}
public int? GetNameLength(string name)
{
return name?.Length;
}
public float AddNumber(float x, float y, Func<float, float, float> acc)
{
return acc?.Invoke(x, y) ?? (x + y);
}
public void PrintParam(string first, string second)
{
Console.WriteLine(string.Format("{0}:{1},{2}:{3}", nameof(first), first, nameof(second), second));
}
public void Introduce()
{
Console.WriteLine("you are calling {0}.{1}", nameof(Functions), nameof(Introduce));
}
public void WriteCMain()
{
var world = "world";
var hello = $"hello, {world}";
var cppHelloWorldProgram = new Dictionary<int, string>
{
[10] = $"{HeadOfCMain()}",
[20] = " printf(\"hello, world\")",
[30] = " return 0;}"
};
Console.WriteLine(cppHelloWorldProgram[10]);
Console.WriteLine(cppHelloWorldProgram[20]);
Console.WriteLine(cppHelloWorldProgram[30]);
}
private string HeadOfCMain()
{
return "int main() {";
}
}
}
{C#} C#6酷酷的
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 一个甚是无聊的夜晚,为了打发时间,随便点开了一集奇葩说,选择这集纯粹是因为里面有我喜欢的嘉宾小S。完全没有...