10 2022 档案

摘要:1、记录规则: a、不应该返回的位置,需要在标示为记录错误标识。 b、日志记录应为【类.方法】状态:: 错误信息。 说明:状态主要记录错误。不是错误的,可以不记录。 [CollectData]:: Process Engine data end #含义:在收集数据环节,数据执行完成了。 [Colle 阅读全文
posted @ 2022-10-14 17:34 je_ck 阅读(27) 评论(0) 推荐(0)
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Security.Cryptography;us 阅读全文
posted @ 2022-10-12 11:20 je_ck 阅读(60) 评论(0) 推荐(0)
摘要:int count = 0;int count1 = 0;for (int i = 0; i < 10; i++){ count1 = count++;}MessageBox.Show(count.ToString(),count1.ToString()); 规则:先赋值,后++ count的值是1 阅读全文
posted @ 2022-10-09 11:27 je_ck 阅读(27) 评论(0) 推荐(0)
摘要:MessageBox.Show((1.12).ToString("f1")); 小数点后1位。 阅读全文
posted @ 2022-10-09 11:24 je_ck 阅读(45) 评论(0) 推荐(0)