untiy - SQL Server 2012 数据存储问题及解决方法
摘要:using UnityEngine; using System.Collections; using UnityEngine.UI; using System.Collections.Generic; using System.Threading; using System.Linq; using
阅读全文
posted @
2021-03-31 09:57
_萧朗
阅读(143)
推荐(0) 编辑
Unity 3D调用System.Windows.Forms.dll 提示 could not register the window class ,win32 error 0
摘要:using System.Collections; using System.Collections.Generic; using UnityEngine; using System.IO; using UnityEngine.UI; using System; using System.Threa
阅读全文
posted @
2021-03-29 16:02
_萧朗
阅读(1628)
推荐(0) 编辑
Json文件与C#字典读写转换
摘要:1.C# 字典读取Json文件: 1 Dictionary<string, Dictionary<string, float>> Dic_Infos = new Dictionary<string, Dictionary<string, float>>(); 2 3 string path = @"
阅读全文
posted @
2020-11-18 16:02
_萧朗
阅读(2052)
推荐(0) 编辑
unity通过WebAPI调用MongoDB
摘要:1.unity模块-调用WebAPI: 1 using UnityEngine; 2 using System.Collections; 3 using System.IO; 4 using System.Collections.Generic; 5 using System.Linq; 6 usi
阅读全文
posted @
2020-11-05 18:34
_萧朗
阅读(473)
推荐(0) 编辑
XML与字典读写
摘要:XML 格式: 1 <?xml version="1.0" encoding="utf-8"?> 2 <DictionaryNotes> 3 <DictionaryNote name="CFFE-FLOOR-DM"> 4 <B_IsSuccess>True</B_IsSuccess> 5 <Load
阅读全文
posted @
2020-03-20 16:43
_萧朗
阅读(477)
推荐(0) 编辑
删除包含子文件夹和子文件的文件夹
摘要:private void DelFile(string FilePath) { if (Directory.Exists(FilePath)) { try { DirectoryInfo dir = new DirectoryInfo(FilePath); FileSystemInfo[] file
阅读全文
posted @
2020-03-20 16:03
_萧朗
阅读(502)
推荐(0) 编辑
TreeView自定义滑动条
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.
阅读全文
posted @
2020-03-12 16:27
_萧朗
阅读(445)
推荐(0) 编辑
文件夹目录排序
摘要:using System;using System.Collections.Generic; namespace Microsoft.Xna.User.GraphicsDeviceUserControl{ public class FilesNameSort : IComparer<string>
阅读全文
posted @
2020-01-02 16:41
_萧朗
阅读(423)
推荐(0) 编辑
C#调用Server_SQL
摘要:C#调用Server_SQL: SqlCommand:数据库命令行语句 //数据库路径 static string GetConnectString() { return "data source=192.168.0.96;initial catalog=haha;user id=sa;pwd=zh
阅读全文
posted @
2019-09-23 17:44
_萧朗
阅读(475)
推荐(0) 编辑
批量修改文件名
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi
阅读全文
posted @
2019-06-20 16:58
_萧朗
阅读(211)
推荐(0) 编辑
快捷键Alt、Shift、Ctrl 点击事件
摘要://场景初始化函数public StartScene(){ this.KeyDown += ModelViewerControl_KeyDown; his.KeyUp += ModelViewerControl_KeyUp;} bool alt_key_flag = false; bool shif
阅读全文
posted @
2019-06-12 16:07
_萧朗
阅读(405)
推荐(0) 编辑
获取数据库信息
摘要:using System;using System.Data;using System.Data.SqlClient; namespace View{ public class GetDatabase { private string strSQL; //与SQL Server的连接字符串设置 //
阅读全文
posted @
2019-05-05 10:10
_萧朗
阅读(159)
推荐(0) 编辑
获取文件路径
摘要:1.打开单个文件,获取文件名 private void On_Click(){ string filename=""; OpenFileDialog Dialog = new OpenFileDialog(); Dialog.Filter = "(*.ifc)|"; if (Dialog.ShowD
阅读全文
posted @
2019-04-30 10:31
_萧朗
阅读(324)
推荐(0) 编辑
String数据转Matrix矩阵
摘要:String数据转Matrix矩阵 private Matrix String_To_Matrix(string str) { int[] Remove_Num = new int[10]; int Remove_Int = 0; string Str_One = str; //{ {M11:1 M
阅读全文
posted @
2019-01-03 14:35
_萧朗
阅读(634)
推荐(0) 编辑
文件IO(存取.txt文件)
摘要://存文件方法 public void Save_File_Info(string Save_Path) { //根据路径,创建文件和数据流 FileStream FS = new FileStream(Save_Path, FileMode.Create); StreamWriter SW = n
阅读全文
posted @
2019-01-03 14:12
_萧朗
阅读(235)
推荐(0) 编辑
给定奇数个整数,其中仅有一个整数出现了奇数次
摘要:Eg: 1,7,3,4,11,1,13,6,11,7,4,13,1,6,1——>3 namespace xiaolang { public class Finds { public static void main(String[] args) { int[] number={1,7,3,4,11,
阅读全文
posted @
2018-10-29 16:25
_萧朗
阅读(274)
推荐(0) 编辑
从指定Dictionary中移除指定值项
摘要:void Removeltems(Dictionary<key, ltem> _dicltemMap, ltem _item) { List<key> keys = new List<key>(); foreach (var KV in _dicltemMap) { if (KV.Value.Equ
阅读全文
posted @
2018-10-25 19:18
_萧朗
阅读(3624)
推荐(0) 编辑
数字瘦身,最后输出一位数,例如:75 7+5=12 1+2=3 最终答案 3
摘要:数字瘦身,最后输出一位数,例如:75 7+5=12 1+2=3 最终答案 3 using System; public class Solution { private int renum; public int diet(int in_num) { renum = 0; while (in_num
阅读全文
posted @
2018-10-24 22:08
_萧朗
阅读(283)
推荐(0) 编辑