首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看C#
//辅助自定义代码生成器用
public void READSB()
        {

            string dir = AppDomain.CurrentDomain.BaseDirectory;
            dir = dir + "READ\\";
            if (!Directory.Exists(dir))
            {
                Directory.CreateDirectory(dir);
            }
            string file = dir + "a.txt";
            string file2 = dir + "b.txt";
......................
阅读全部 | miaoge911015 贴于 2020年9月23日 18:30     hide bbsi
using System;

namespace bccn
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("随机编码");
Console.WriteLine();

// 练习一下随机编码的使用
......................
阅读全部 | miaoge911015 贴于 2020年9月23日 18:08     hide bbsi
namespace oozinoz1
{
    /**/
    /// <summary> 
    /// Class5 的摘要说明。 
    /// </summary> 
    public class Class5
    {
        private static void InsertImage(string imagePath, string wordPath)
        {
            Document document = new Document();
            Section s = document.AddSection();
......................
阅读全部 | lty666 贴于 2020年5月22日 11:47     hide bbsi
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace work2
{
    class Program
    {
        static void Main(string[] args)
        {
......................
阅读全部 | gougoudan 贴于 2020年5月19日 18:07     hide bbsi
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace work2
{
    class Program
    {
        static void Main(string[] args)
        {
......................
阅读全部 | gougoudan 贴于 2020年5月18日 17:35     hide bbsi
joooossmoajomwrt
阅读全部 | CC990916 贴于 2019年7月13日 22:10     hide bbsi
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Runtime.InteropServices;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;

......................
阅读全部 | 静夜思 贴于 2017年9月30日 11:36     hide bbsi
void GetAround(int x, int y, Direction dirction = Direction.Null, int flag = 1)【一个void语句 括号里是定义 int的定义】
        {
            if (starsColor[x, y] == StarColor.White)
                return;
            if (dirction == Direction.Null)
            {
                list.Clear(); 【list调用clear()函数,(.代表调用)】
                list.Add(new StarInfo(x, y, starsColor[x, y], 1));【 new表示创建一个starinfo】 
                starsFlag[x, y] = 1;【= 表示赋值】
                if (x == 0 && y == 0)【== 表示判断是否相等】
                {
                    GetAround(x, y, Direction.Right);
......................
阅读全部 | 哈哈哈儿 贴于 2016年12月24日 22:03     hide bbsi
public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        struct zuobiao
        {
            public int x;
            public int y;
            public int t;//t=0或1
        }
......................
阅读全部 | 柘之云 贴于 2016年12月3日 20:15     hide bbsi
private void btnAdd_Click(object sender, EventArgs e)
        {

            //校验
            if ((txtprice.Text == "") || (txtquantity.Text == "")
                 || (txtdiscount.Text == "") || (txtgid.Text == "")
                 || (txtname.Text == "") || (txtdate.Text == "") || (txtcolor.Text == "") || (txtsize.Text == "")
                || (txtshuxing.Text == "") || (txtbrand.Text == ""))
            {
                MessageBox.Show("不能为空。");
                return;
            }
......................
阅读全部 | 王一楠 贴于 2016年6月8日 13:40     hide bbsi
上一页 1 2 3 4 5 6 7 8 9 下一页