本文整理汇总了C#中ILCompiler.DependencyAnalysis.NodeFactory.ReadOnlyDataBlob方法的典型用法代码示例。如果您正苦于以下问题:C# NodeFactory.ReadOnlyDataBlob方法的具体用法?C# NodeFactory.ReadOnlyDataBlob怎么用?C# NodeFactory.ReadOnlyDataBlob使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ILCompiler.DependencyAnalysis.NodeFactory
的用法示例。
在下文中一共展示了NodeFactory.ReadOnlyDataBlob方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetData
public override ObjectData GetData(NodeFactory factory, bool relocsOnly = false)
{
ObjectDataBuilder builder = new ObjectDataBuilder(factory);
builder.DefinedSymbols.Add(this);
//
// Emit a ModuleFixupCell struct
//
builder.EmitZeroPointer();
Encoding encoding = factory.Target.IsWindows ? Encoding.Unicode : Encoding.UTF8;
int moduleNameBytesCount = encoding.GetByteCount(_moduleName);
byte[] moduleNameBytes = new byte[moduleNameBytesCount + 2];
encoding.GetBytes(_moduleName, 0, _moduleName.Length, moduleNameBytes, 0);
builder.EmitPointerReloc(factory.ReadOnlyDataBlob("__modulename_" + _moduleName, moduleNameBytes, 2));
return builder.ToObjectData();
}
示例2: GetData
public override ObjectData GetData(NodeFactory factory, bool relocsOnly = false)
{
ObjectDataBuilder builder = new ObjectDataBuilder(factory);
builder.DefinedSymbols.Add(this);
//
// Emit a MethodFixupCell struct
//
builder.EmitZeroPointer();
int entryPointBytesCount = Encoding.UTF8.GetByteCount(_entryPointName);
byte[] entryPointNameBytes = new byte[entryPointBytesCount + 1];
Encoding.UTF8.GetBytes(_entryPointName, 0, _entryPointName.Length, entryPointNameBytes, 0);
builder.EmitPointerReloc(factory.ReadOnlyDataBlob("__pinvokename_" + _entryPointName, entryPointNameBytes, 1));
builder.EmitPointerReloc(factory.PInvokeModuleFixup(_moduleName));
return builder.ToObjectData();
}