Tagged Questions

11
votes
4answers
248 views

Should the MVVM ViewModel perform type conversion/validation?

Hi We're just getting into MVVM in WPF. We have implemented our ViewModels with 'strongly typed' properties (int, double? etc.) that we bind to in the view. Type conversion works OK, mostly, and so …
10
votes
9answers
3k views

C# Convert string to nullable type (int, double, etc…)

I am attempting to do some data conversion. Unfortunately, much of the data is in strings, where it should be int's or double, etc... So what I've got is something like: double? amount = …
6
votes
6answers
737 views

Why is the result of this explicit cast different from the implicit one?

Why is the result of this explicit cast different from the implicit one? #include <stdio.h> double a; double b; double c; long d; double e; int main() { a = 1.0; b = 2.0; …
5
votes
4answers
148 views

Most succinct way to convert ListBox.items to a generic list

I am using C# and targeting the .NET Framework 3.5. I'm looking for a small, succinct and efficient piece of code to copy all of the items in a ListBox to a List<String> (Generic List). At the …
4
votes
2answers
229 views

C++ conversion statements

What is the difference between (type)value and type(value) in C++?
4
votes
3answers
420 views

C++ difference between automatic type conversion to std::string and char*

As a learning exercise, I have been looking at how automatic type conversion works in C++. I know that automatic type conversion should generally be avoided, but I'd like to increase my knowledge of …
4
votes
7answers
811 views

Character to Integer in C

Is there a way to convert a character to an integer in C? for example, '5' -> 5 thanks.
4
votes
2answers
807 views

Python Reflection and Type Conversion

In Python, functions like str(), int(), float(), etc. are generally used to perform type conversions. However, these require you to know at development time what type you want to convert to. A …
4
votes
4answers
1k views

In Powershell how can I convert a string with a trailing ‘sign’ to a number?

I need to convert strings with optional trailing signs into actual numbers using Powershell. Possible strings are: 1000- 323+ 456 I'm trying to use System.Int.TryParse with a NumberStyles of …
4
votes
2answers
1k views

SQL server 2005 numeric precision loss

Hello, Debugging some finance-related SQL code found a strange issue with numeric(24,8) mathematics precision. Running the following query on your MSSQL you would get A + B * C expression result to …
3
votes
5answers
404 views

C: type conversion when passing an argument on a function call

From The C Programming Language 2nd Edition: Since an argument of a function call is an expression, type conversions also take place when arguments are passed to function. In absence of a function …
3
votes
5answers
619 views

C# implicit conversions and == operator

Some code for context: class a { } class b { public a a{get;set;} public static implicit operator a(b b) { return b.a; } } a a=null; b b=null; a = b; //compiler: …
3
votes
3answers
515 views

Cannot implicitly convert type ‘X’ to ‘string’ - when and how it decides that it “cannot”?

Right now I'm having it with Guids. I certainly remember thah throughout the code in some places this implicit conversion works, in other does not. Until now I fail to see the pattern. How the …
3
votes
4answers
472 views

Checking if a string can be converted to float in Python

I've got some Python code that runs through a list of strings and converts them to integers or floating point numbers if possible. Doing this for integers is pretty easy if element.isdigit(): …
3
votes
5answers
248 views

.NET Why can a string[] be passed as IEnumerable<string> parameter?

This is valid code: void func(IEnumerable<string> strings){ foreach(string s in strings){ Console.WriteLine(s); } } string[] ss = new string[]{"asdf", "fdsa"}; func(ss); What …

1 2 3 4 5 6 next
15 30 50 per page