自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 Unity递归查找子物体

//递归查找子物体 using System.Collections; using System.Collections.Generic; using UnityEngine; public class RecursionFind : MonoBehaviour { public Transform parent; void Start () { FindChild(“Child”, parent...

2019-07-12 23:27:20 791

原创 C# 数组的增删查改

//数组的增删查改 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace 数组的增删查改_Person { public class Person {...

2019-07-11 22:34:02 4250

原创 C#控制方块的移动windows

using System; namespace 方块移动 { struct Vector2 { public int x, y; public Vector2(int x, int y) { this.x = x; this.y = y; } } class GameObject { private Vector2 position; private Vector2 size; private C...

2019-07-11 22:06:08 1478

原创 C#继承

//C#继承 //继承类 using System; using System.Collections.Generic; using System.Text; namespace ConsoleApp3 { public class Father { int x = 1; public virtual void Reply() { Console.WriteLine(“father reply”)...

2019-07-11 12:37:15 202

原创 C#字符串翻转

//字符转翻转“I am a student” namespace Split { class Program { static void Main(string[] args) { string A = “I am a student”; string[] arr = A.Split(’ '); for (int i = 0; i < arr.Length; i++) { Console....

2019-07-11 11:18:57 356

原创 C#快排

快速排序 //快排方法类 namespace Q { class QuickSort1 { //快速排序 public void Quicks(int[] arr, int low, int high) { if (low >= high) { return; } int first = low; int last = high; int key = arr[low]; while (fir...

2019-07-10 20:06:49 454

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除