资源简介
代码片段和文件信息
using System;
using System.IO;
using System.Collections;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Threading;
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 arr
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 36864 2009-08-19 14:36 SystemInfo1\bin\Lemony.SystemInfo.dll
文件 65024 2009-08-19 14:36 SystemInfo1\bin\Lemony.SystemInfo.pdb
文件 36864 2009-08-19 14:36 SystemInfo1\bin\Test.exe
文件 38400 2009-08-19 14:36 SystemInfo1\bin\Test.pdb
文件 5632 2005-12-08 14:51 SystemInfo1\bin\Test.vshost.exe
文件 36864 2009-08-19 14:36 SystemInfo1\SystemInfo\bin\Lemony.SystemInfo.dll
文件 65024 2009-08-19 14:36 SystemInfo1\SystemInfo\bin\Lemony.SystemInfo.pdb
文件 36864 2009-08-19 14:36 SystemInfo1\SystemInfo\bin\Test.exe
文件 38400 2009-08-19 14:36 SystemInfo1\SystemInfo\bin\Test.pdb
文件 5632 2005-12-08 14:51 SystemInfo1\SystemInfo\bin\Test.vshost.exe
文件 14926 2007-03-29 09:06 SystemInfo1\SystemInfo\CustomtMarshaler.cs
文件 908 2007-03-29 09:06 SystemInfo1\SystemInfo\DiskInfo.cs
文件 885 2007-03-29 09:06 SystemInfo1\SystemInfo\IpInfo.cs
文件 2000 2007-03-29 09:07 SystemInfo1\SystemInfo\MIB_IFROW.cs
文件 557 2007-03-29 09:07 SystemInfo1\SystemInfo\MIB_IFTABLE.cs
文件 3427 2007-03-29 09:07 SystemInfo1\SystemInfo\NetInfo.cs
文件 36864 2009-08-19 14:36 SystemInfo1\SystemInfo\obj\Debug\Lemony.SystemInfo.dll
文件 65024 2009-08-19 14:36 SystemInfo1\SystemInfo\obj\Debug\Lemony.SystemInfo.pdb
文件 168 2009-08-19 14:37 SystemInfo1\SystemInfo\obj\SystemInfo.csproj.FileList.txt
文件 1519 2007-03-29 09:07 SystemInfo1\SystemInfo\ProcessInfo.cs
文件 1321 2007-03-29 09:04 SystemInfo1\SystemInfo\Properties\AssemblyInfo.cs
文件 14926 2007-03-29 09:06 SystemInfo1\SystemInfo\SystemInfo\CustomtMarshaler.cs
文件 908 2007-03-29 09:06 SystemInfo1\SystemInfo\SystemInfo\DiskInfo.cs
文件 885 2007-03-29 09:06 SystemInfo1\SystemInfo\SystemInfo\IpInfo.cs
文件 2000 2007-03-29 09:07 SystemInfo1\SystemInfo\SystemInfo\MIB_IFROW.cs
文件 557 2007-03-29 09:07 SystemInfo1\SystemInfo\SystemInfo\MIB_IFTABLE.cs
文件 3427 2007-03-29 09:07 SystemInfo1\SystemInfo\SystemInfo\NetInfo.cs
文件 36864 2009-08-19 14:36 SystemInfo1\SystemInfo\SystemInfo\obj\Debug\Lemony.SystemInfo.dll
文件 65024 2009-08-19 14:36 SystemInfo1\SystemInfo\SystemInfo\obj\Debug\Lemony.SystemInfo.pdb
文件 168 2009-08-19 14:37 SystemInfo1\SystemInfo\SystemInfo\obj\SystemInfo.csproj.FileList.txt
............此处省略78个文件信息
- 上一篇:c# 监测进程cpu 占用率 过高则结束进程
- 下一篇:获取某一个进程cpu 占用率
相关资源
- C#获取电脑CPU以及内存使用率
- 及时通知GC回收内存
- CPU使用率
- 进程管理器
- 一键隐藏界面(根据进程隐藏)
- C# 读内存信息
- TestClose 用VisualStudio2005(C#)实现的进
- Sqlite C# AnyCPU X86/X64 32位/64位 自适应
- Sqlite C# AnyCPU X86/X64 32位/64位 自适应
- C# 关闭进程 KillProcess
- C#做的时间片轮转法和优先数的进程调
- c#进程守护软件-
- 模拟操作系统(C#编写,包括进程管理
- C#实现进程状态转换
- c#共享内存demo-两个进程间通过共享内
- c#编写的操作系统作业--模拟进程调度
- C# DLL 进程注入。
- C# 获取当前所有进程线程CUP占用率
- C# 禁止结束进程,保护进程源代码:
- C#实现多线程TCPUDP端口扫描
- 文件转存内存和内存读取文件和文件
- c# 模拟操作系统 文件管理 内存管理
- C#多进程小
- C#进程守护者
- C#获取CPU、内存、硬盘当前使用百分比
- C#实现 CPU内存使用率 功能源码
- C# 显示系统中的进程信息(进程ID号、
- C# 实现进程守护功能 通用于所有进程
- 获取某一个进程cpu 占用率
- c# 监测进程cpu 占用率 过高则结束进程
评论
共有 条评论