有兩種方法,推薦第二種,不同的地方已經加粗加大了。第一種方法:
using
system;
using
system.collections.generic;
using
system.componentmodel;
using
system.data;
using
system.drawing;
using
system.linq;
using
system.text;
using
system.threading.tasks;
using
system.windows.forms;
using
system.xml;
namespace
private
void form1_load(object
sender, eventargs e)
private
void button1_click(object
sender, eventargs e)
//建立dataset物件,繫結資料
dataset ds = new
dataset();
ds.tables.add(dt);
datagridview1.datasource =dt;
}//////
建立try.xml檔案
///
private
static
void
createxml() }
}
第二種 獲取資料更為簡單
usingsystem;
using
system.collections.generic;
using
system.componentmodel;
using
system.data;
using
system.drawing;
using
system.linq;
using
system.text;
using
system.threading.tasks;
using
system.windows.forms;
using
system.xml;
using
system.xml.linq;
namespace
private
void form1_load(object
sender, eventargs e)
private
void button1_click(object
sender, eventargs e)
//建立dataset物件,繫結資料
dataset ds = new
dataset();
ds.tables.add(dt);
datagridview1.datasource =dt;
}//////
建立try.xml檔案
/// private
static
void
createxml()
}}
X86 X64 讀取rflags的方法
工作中遇到的問題,需要讀取rflags的值然後顯示的列印出來。翻了sdm的指令卷,找到了lahf指令,這個指令可以把rflags的值寫入ah暫存器中,那麼問題來了,ah暫存器只有8位,但是rflags在保護模式或者x64模式是32位 64位的,來看下sdm的說明 可知,確實只擷取了rflags的低8...
C txt文字讀取最後X行
讀取文字檔案最後的內容 檔名 行數 字元編碼 返回讀取的內容 public static string readlastline string filewithfullpath,int linecount 1,encoding encoding null filestream.seek offset...
Python 3 x 讀取dict元素
coding utf 8 import traceback 什麼是dict if name main 在dict中,每一項包含乙個key和乙個value,key和value是一一對應的 d print d 讀取dict元素 通過d key 的方式可以得到對應的value,key不存在時,會報錯 pr...