资源简介
c#仿Windows任务管理器,显示应用程序,进程,性能(CPU使用情况、内存使用情况、硬盘所用及剩余空间)
代码片段和文件信息
using System;
using System.IO;
using System.Collections;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Threading;
///Download by http://www.newxing.com
namespace Lemony.SystemInfo
{
///
/// CustomMarshaler class implementation.
///
public abstract class CustomMarshaler
{
#region Fields
// The internal buffer
internal byte[] data;
private MemoryStream stream;
private BinaryReader binReader;
private BinaryWriter binWriter;
#endregion
#region constructors
public CustomMarshaler()
{
}
#endregion
#region public methods
public void Deserialize()
{
if (data != null)
{
if (binReader != null)
{
binReader.Close();
stream.Close();
}
// Create a steam from byte array
stream = new MemoryStream(data);
binReader = new BinaryReader(stream System.Text.Encoding.Unicode);
ReadFromStream(binReader);
binReader.Close();
}
}
public void Serialize()
{
if (data != null)
{
stream = new MemoryStream(data);
binWriter = new BinaryWriter(stream System.Text.Encoding.Unicode);
WriteToStream(binWriter);
binWriter.Close();
}
}
public int GetSize()
{
int size = 0;
FieldInfo[] fields = this.GetType().GetFields(BindingFlags.Public | BindingFlags.Instance);
foreach (FieldInfo field in fields )
{
if (field.FieldType.IsArray)
{
size += GetFieldSize(field);
}
else if (field.FieldType == typeof(string))
{
size += GetFieldSize(field)*2;
}
else if (field.FieldType.IsPrimitive)
{
size += Marshal.SizeOf(field.FieldType);
}
}
return size;
}
#endregion
#region properties
public byte[] ByteArray
{
get
{
return data;
}
}
#endregion
#region virtual and protected methods
public virtual void ReadFromStream(BinaryReader reader)
{
object[] param = null;
// Get all public fields
FieldInfo[] fields = this.GetType().GetFields(BindingFlags.Public | BindingFlags.Instance);
// Loop through the fields
foreach(FieldInfo field in fields)
{
// Retrieve the read method from ReadMethods hashtable
MethodInfo method = (MethodInfo)MarshallingMethods.ReadMethods[field.FieldType];
if (field.FieldType.IsArray)
{
Type element = field.FieldType.GetElementType();
if (element.IsValueType && element.IsPrimitive)
{
if ((element == typeof(char)) || element == typeof(byte))
{
param = new object[1];
param[0] = GetFieldSize(field);
field.SetValue(this method.Invoke(reader param));
}
else // any other value type array
{
param = new object[2];
param[0] = reader;
param[1] = GetFieldSize(field);
field.SetValue(this method.Invoke(null param))
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1162 2007-03-29 09:08 www.NewXing.com\Test\Properties\AssemblyInfo.cs
文件 1321 2007-03-29 09:04 www.NewXing.com\SystemInfo\Properties\AssemblyInfo.cs
文件 14965 2010-11-12 01:07 www.NewXing.com\SystemInfo\CustomtMarshaler.cs
文件 947 2010-11-12 01:07 www.NewXing.com\SystemInfo\DiskInfo.cs
文件 8826 2007-03-29 15:58 www.NewXing.com\Test\frmProcess.cs
文件 26464 2007-03-29 15:58 www.NewXing.com\Test\frmProcess.designer.cs
文件 924 2010-11-12 01:07 www.NewXing.com\SystemInfo\IpInfo.cs
文件 4181 2007-03-29 09:11 www.NewXing.com\Test\LineChart.cs
文件 1599 2007-03-29 09:12 www.NewXing.com\Test\LineChart.Designer.cs
文件 2039 2010-11-12 01:07 www.NewXing.com\SystemInfo\MIB_IFROW.cs
文件 596 2010-11-12 01:07 www.NewXing.com\SystemInfo\MIB_IFTABLE.cs
文件 3464 2010-11-12 01:07 www.NewXing.com\SystemInfo\NetInfo.cs
文件 1559 2010-11-12 01:07 www.NewXing.com\SystemInfo\ProcessInfo.cs
文件 468 2007-03-29 09:14 www.NewXing.com\Test\Program.cs
文件 2862 2007-03-29 09:08 www.NewXing.com\Test\Properties\Resources.Designer.cs
文件 1087 2007-03-29 09:08 www.NewXing.com\Test\Properties\Settings.Designer.cs
文件 17348 2010-11-12 01:08 www.NewXing.com\SystemInfo\SystemInfo.cs
文件 2299 2007-03-29 09:09 www.NewXing.com\SystemInfo\SystemInfo.csproj
文件 3816 2007-03-29 15:57 www.NewXing.com\Test\Test.csproj
文件 6774 2007-03-29 15:58 www.NewXing.com\Test\frmProcess.resx
文件 5814 2007-01-08 17:21 www.NewXing.com\Test\LineChart.resx
文件 5612 2007-03-29 09:08 www.NewXing.com\Test\Properties\Resources.resx
文件 249 2007-03-29 09:08 www.NewXing.com\Test\Properties\Settings.settings
文件 1385 2007-03-29 09:09 www.NewXing.com\SystemInfo.sln
..A..H. 24064 2007-04-11 09:18 www.NewXing.com\SystemInfo.suo
目录 0 2007-04-06 15:59 www.NewXing.com\SystemInfo\Properties
目录 0 2007-04-06 15:59 www.NewXing.com\Test\Properties
目录 0 2007-04-06 15:59 www.NewXing.com\bin
目录 0 2007-04-06 15:59 www.NewXing.com\SystemInfo
目录 0 2007-04-06 15:59 www.NewXing.com\Test
............此处省略3个文件信息
相关资源
- C#chart控件游标跟随鼠标移动
- EmguCV完美播放文件夹和摄像头视频
- c#网页浏览器
- C#从Excel中提取数据到DataGridView中显示
- c#实现HidUsb设备通信
- C#程序基于Moravec算子提取特征点详细
- C#9种预测处理算法
- 火车票售票系统C#源代码
- c#课程设计204492
- C#恶搞版评委打分系统
- C#代码生成器源码
- 实测 C# USB口 打印机和开钱箱
- C#连接DB2远程数据库
- C#串口调试助手,收发数据保存在MY
- 医院管理系统C#版完全版
- C# .net 单点登录
- C# 编写的 蓝牙GPS定位软件 可通过蓝牙
- C#用户权限 不同的用户登录进来有不
- C#版本的网络调试助手源码
- 远程唤醒 wake on lanc#
- C#控件大全C#所有的控件
- 毕业设计 患者监护系统
-
C#读取xm
l文件并写入数据库 - MVC简单C#
- hook源码c#编写的一些hook的例子203000
- 用c#语言实现写字板的界面及写字板涉
- c#绘图板源码直线,矩形,圆形,填充
- C#高级编程练习题目内附答案
- 基于c/s模式的简单聊天程序
- C#实现的WEB浏览器
评论
共有 条评论