My Project
C:/Users/Lab_411_02/Desktop/Violet1 - dox/violet/violet/Utility.cs
查看本檔案說明文件.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 
7 namespace violet
8 {
9  class Utility
10  {
11  byte[] bitmapBytes;
12 
13  public byte[] BitmapBytes
14  {
15  get { return bitmapBytes; }
16  set { bitmapBytes = value; }
17  }
18 
19 
20 
21  public string xml;
22  //string tagName;
23 
24  //public string TagName
25  //{
26  // get { return tagName; }
27  // set { tagName = value; }
28  //}
29 
30  //List<string> picControlName;
31 
32  //public List<string> PicControlName
33  //{
34  // get { return picControlName; }
35  // set { picControlName = value; }
36  //}
37  }
38 }
byte [] BitmapBytes
Definition: Utility.cs:14
使UNIX上開發的C程式移植到windows上 /summary>
Definition: Form1.cs:19
string xml
Definition: Utility.cs:21
byte [] bitmapBytes
Definition: Utility.cs:11