That actually didn't fix it.
Thanks, though; you saved me an error later one, I'm sure.
User Profile
Collapse
-
XAML ObjectDataProvider, ObjectType Error
I'm a trying to instantiate an object (that was created in C#) in XAML using the ObjectDataProvi der. Unfortunately, I'm receiving the following error: "The type reference cannot find a public type named 'TYPENAME'". I have a .cs file of the same name as the the TYPENAME.
Here's my XAML:
...Code:<Window x:Class="PROJECTNAME.PROJECTFILE" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" -
I should stated that this code is in C#. In C#, pointers are only allowed in unsafe mode. I would like to avoid that. Surely, there's a way I can return an array without a pointer in C#?Leave a comment:
-
Method returning a two dimensional array
I have the following method:
...Code:public string[,] StringConvert_tblVFWPost(DataTable dt1) { string[,] stringArray = new string[dt1.Rows.Count, dt1.Columns.Count]; for(int row = 0; row < dt1.Rows.Count; ++row) { for(int col = 0; col < dt1.Columns.Count; col++) {
No activity results to display
Show More
Leave a comment: