C# - Cast Error

Post here about scripting and programming for HaloPC (audio, network, ai, etc.)
Post Reply
User avatar
grimdoomer




System Engineer

Posts: 1440
Joined: Mon Oct 09, 2006 4:36 pm

C# - Cast Error

Post by grimdoomer »

Well I'm working on a RealTimeHalo system for halo 2 vista. I made a Memory Reading/Writing class. But when ever I try to convert a byte array to any other data type, I get an exception that says Unable to cast type "byte[]" to "IConvertable".
I know this conversion works, I've used it in the past. Here is an example:

Code: Select all

        public float ReadSingle(int Address)
        {
            byte[] buffer = new byte[4];
            ReadProcessMemory(m_hProcess, new IntPtr(Address + baseaddress), buffer, 4, out Out);
            return Convert.ToSingle(buffer);
        }
Any ideas?
Image
AI Zones in MP | Ambiance | Gravemind Beta v1.1
Aumaan Anubis wrote:Grimdoomer. The first person ever to mod Halo 2 Vista.
User avatar
LuxuriousMeat





Posts: 824
Joined: Thu Nov 03, 2005 6:43 pm
Location: zzzzzzzzzzzzzzzz
Contact:

Re: C# - Cast Error

Post by LuxuriousMeat »

grimdoomer wrote:Well I'm working on a RealTimeHalo system for halo 2 vista. I made a Memory Reading/Writing class. But when ever I try to convert a byte array to any other data type, I get an exception that says Unable to cast type "byte[]" to "IConvertable".
I know this conversion works, I've used it in the past. Here is an example:

Code: Select all

        public float ReadSingle(int Address)
        {
            byte[] buffer = new byte[4];
            ReadProcessMemory(m_hProcess, new IntPtr(Address + baseaddress), buffer, 4, out Out);
            return Convert.ToSingle(buffer);
        }
Any ideas?

Code: Select all

return BitConverter.ToSingle(buffer, 0);
Image
User avatar
grimdoomer




System Engineer

Posts: 1440
Joined: Mon Oct 09, 2006 4:36 pm

Post by grimdoomer »

Thanks soo much! :D
Image
AI Zones in MP | Ambiance | Gravemind Beta v1.1
Aumaan Anubis wrote:Grimdoomer. The first person ever to mod Halo 2 Vista.
User avatar
LuxuriousMeat





Posts: 824
Joined: Thu Nov 03, 2005 6:43 pm
Location: zzzzzzzzzzzzzzzz
Contact:

Post by LuxuriousMeat »

grimdoomer wrote:Thanks soo much! :D
No problem :).
Image
Post Reply