简体   繁体   中英

C# compile errors in unsafe code

Compiling a VS 2010 c# project (.NET 4.0, any CPU, allow unsafe code = checked) we are getting a variety of compile errors as below:

  1. Operator '*' cannot be applied to operands of type 'System.IntPtr' and 'int'

  2. Constant value '325486741' cannot be converted to a 'int' (use 'unchecked' syntax to override)

  3. Cannot convert type 'string' to 'char*'

  4. Cannot implicitly convert type 'long' to 'byte*'. An explicit conversion exists (are you missing a cast?)

  5. Invalid expression term 'ref'

All these are occurring in 'unsafe' methods.

How to resolve these ?

We'd need to see your code, but I'd say that the "unsafe" part is irrelevant to the errors, since those seem to be problems with casting and such.

Here's some info that might help:

  1. Operator '*' cannot be applied to operands of type 'System.IntPtr' and 'int'

Try casting to an int or long first.

  1. Constant value '325486741' cannot be converted to a 'int' (use 'unchecked' syntax to override)

Try using unchecked((int)variable).

  1. Cannot convert type 'string' to 'char*'

Try using:

 fixed (char* pChar = my_string) { ... }
  1. Cannot implicitly convert type 'long' to 'byte*'. An explicit conversion exists (are you missing a cast?)

Try casting: byte* pB = (byte*)value;

  1. Invalid expression term 'ref'

I can't say much about this one without the code.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM