The best overloaded method match for 'XDevkit.IXboxDebugTarget.GetMemory(uint, uint, byte[], out uint)' has some invalid arguments

后端 未结 1 713
一生所求
一生所求 2021-01-26 11:17

Errors Can Be Found Underneath the Code!

The Base Code:

XDevkit.IXboxDebugTarget.GetMemory(uint, uint, byte[], out uint)

What I have

相关标签:
1条回答
  • 2021-01-26 11:55

    Since the third argument to GetMemory is expecting a byte array, and your num3 variable is a byte array, you should just pass it as num3

    As for Encoding not existing in the current context, you are likely just missing using System.Text

    0 讨论(0)
提交回复
热议问题