开发者

C# compile errors in unsafe code

Compiling a VS 2010 c# project (.NET 4.0, any CPU, allow unsafe code = checked) we are gett开发者_如何学运维ing 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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜