Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

System.ArgumentException: Object must be of type Int32.

in this code:

MyBO target = new MyBO() { x1 = 20 };

In MyBO i have an attribute: public byte x1 {get; set;}

What's wrong? I tried with MyBO target = new MyBO() { x1 = (byte)20 }; but i got the same error. Please help.

Thanks!

share|improve this question
2  
What language is this? Please add to the tag list too... – Galghamon Jan 28 '10 at 18:15
2  
It appears to be C#, given the object initializer and System.ArgumentException. – Marc Bollinger Jan 28 '10 at 18:15
1  
Are you sure that's where the error is happening? I made a similar class with a similar declaration with no problems. – Aaron Jan 28 '10 at 18:18
That's not an attribute, that's a property. Post real code that reproduces the error. – Hans Passant Jan 28 '10 at 18:21
Based on the comments to one of the answers, the code given in the question is not like the code that is causing the error. Until the questioner posts complete information, nothing can be done. – Jeffrey L Whitledge Jan 28 '10 at 19:23

3 Answers

MYBO target=new MyBO();
target.x1=Convert.ToByte(20);
share|improve this answer

Are you sure that error comes from that line? I run this code without problems:

class MyBO
{
    public byte x1 { get; set; }   
}

// ...
public static void Main(string[] args)
{
    MyBO my1 = new MyBO() {x1 = 20};
    MyBO my2 = new MyBO() {x1 = (byte)20};
    MyBO my3 = new MyBO() {x1 = Convert.ToByte(20)};
}
share|improve this answer
So what causes the error? – qwerty Jan 28 '10 at 18:36
So post your REAL code, as code above doesn't reproduce your error – Rubens Farias Jan 28 '10 at 19:06

Have you tried explicitly casting to a byte?


MyBO target = new MyBO() { x1 = (byte) 20 };

share|improve this answer
1  
OK, then the problem is: if i have a validation rule, like: [RangeValidator(0, RangeBoundaryType.Inclusive, 20, RangeBoundaryType.Inclusive, Ruleset="validate_x1")] public byte x1 { get; set; } If i have MyBO my1 = new MyBO() {x1 = 20}, i got that error. Why? – qwerty Jan 28 '10 at 18:21
1  
@qwerty, omg! please, edit your question to include that details.... – Rubens Farias Jan 28 '10 at 18:22
I edited the question. – qwerty Jan 28 '10 at 18:23
So can you tell me why i got that error when using RangeValidator in MyBO class? – qwerty Jan 28 '10 at 18:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.