Tagged Questions
0
votes
0answers
9 views
Datagrid show name of my objects .NET, how can i do to show the values from my objects?
i have a problem. i have a list of objetcs an some of my objects have inside others objects, and when i put this list into my DataSource of the grid i have this:
I USE .NET 2010
my question is, how ...
0
votes
2answers
35 views
Reading database table into a .NET object of different structure
I have inflation rates stored in a database with the following structure:
When reading the above data, I need to initialize business objects with a different structure dynamically and fill them ...
0
votes
1answer
20 views
How to use arr.Contains with Object ArrayList
i have this Visual Basic .NET ArrayList
Dim first As New ArrayList()
first.Add({100, 200})
first.Add({500, 250})
first.Add({700, 200})
My question is, how i can ...
1
vote
1answer
57 views
LINQ to CSV and object value - TypeConverter cannot convert from System.String
I'm using http://www.codeproject.com/Articles/25133/LINQ-to-CSV-library
I have a problem with a field of type object. For example:
public class MyClass
{
[CsvColumn(FieldIndex = 1)]
public long ...
0
votes
1answer
27 views
Issue overwriting cookie in .NET
Anytime I attempt to retrieve this cookie back after they go through our payments gateway (which redirects to a different domain, and then takes the user back to our page) the cookie does NOT persist ...
0
votes
2answers
42 views
object sender listviewitem .text property
I am trying to access listviewitem selectitem text property via object sender. how do I do this?
private void button1_Click(object sender, EventArgs e)
{
ListViewItem LS = new ...
5
votes
3answers
74 views
Creating new objects repeatedly on same variable
I suppose this is a very silly question but I've been looking around and couldn't find answers on the following questions. Really appreciate answers shedding light on this.
1) What happens to the ...
0
votes
2answers
76 views
Library to Create a JSONObject in .NET Framework
I am looking for a JSON library which is able to do the following:
PC 1
JSONObject obj = new JSONObject();
obj.put("name", "mkyong.com");
obj.put("age", new Integer(100));
PC 2
JSONObject ...
2
votes
10answers
125 views
When do I use 'object' in C#/.NET?
The only time I tried to use object was List<object> and I regretted it and rewrote it. I can never find an instance to use object rather than an interface. When does one use object in .NET?
1
vote
2answers
39 views
Concept: What is the variable names inside a child class? Do they have names?
I'm working with .NET but I suppose this extends to other language...
So when a child inherits a class, it gets the member variables and properties of the parent. Say there is a private variable name ...
0
votes
1answer
24 views
Detecting a collection-type property on a .NET object using reflection
I am trying to write some code that would iterate over my business objects and dump out their contents into a log file.
For that, I'd like to be able to find all public properties and output their ...
2
votes
1answer
59 views
Duplicating a Non-Serializable (COM) Object
I'm using VB.Net 2010. I want to duplicate the contents of a (COM) object entered to my application by an external (off-the-self) application. I wouldn't like to copy field & property values one ...
-3
votes
3answers
55 views
Looping through an array objects within another array of objects [closed]
I have an array of object called objStud within it has another array
how do I loop and display them?
Here is an image that you can see how objStud is like
3
votes
5answers
150 views
What does .Net do when you declare an object without an instance?
I wonder to know how the .Net Framework handles the declared but not instantiated object situation.
For example i declare an object like
DropDownList ddl;
and do nothing about it. I know that i ...
1
vote
3answers
129 views
How to parse json feed in c#?
How can I parse json feed in c#?
I tried following so far:
string fileurl = "http://itunes.apple.com/rss/customerreviews/id=123456789/json";
var jsonStr = new ...
0
votes
2answers
74 views
Array of an Object error accessing variables: NullReferenceException was unhandled by user code
Ok so I'm attempting to create a high score system and am using an array of a class within an object, however the error in the title appears which tells me that for some reason my objects are full of ...
0
votes
1answer
43 views
.Net Webform losing data
I am having problems getting my page to maintain state. View state is enabled by default but everytime I click a button it resets the form. This is the code I have
protected void Page_Load(object ...
2
votes
1answer
89 views
How can I find all references of string from the object? [duplicate]
Possible Duplicate:
Track all object references in C#
Strings are reference types. They have two parts; an object and a reference to object. For example;
string str1 = "Soner";
string str2 ...
-2
votes
1answer
112 views
Dynamic templating based on list of objects
What is the best way to automatically generate templates in following scenario.
Group of objects:
Article
|- Id
|- Text
Gallery
|- Id
|- Type
|- List<Photos>
Video
|- Id
|- ...
1
vote
2answers
32 views
How to give IDs to Objects to use in any method?
I'm coming into C# from the JavaScript language and I can't seem to find a way to assign string ID names to objects in my Form application that can be used in many methods. For example,
string ...
2
votes
4answers
84 views
Inner class needs access to outer class. Is it good?
I have class
class TournamentManager
{
public List<Target> Targets = new List<Target>();
public List<Player> Players = new List<Player>();
public List<Club> ...
0
votes
4answers
66 views
OOP puzzle. Players in clubs and clubs with players
I don't know if this is right place. But I need answer very much.
I'm writing program for tournament management. I have simple problem but for me it is not that clear.
There are many clubs (One club ...
2
votes
1answer
86 views
determine listbox items origin
I'm working on an application of which requires me to have one list-box to hold data.
I'm having a little issue when deleting an object from a list-box. The issue comes into play when I fill the ...
3
votes
1answer
135 views
How does String.Equals work?
I have a dictionary that has keys as string.
One item has peculiar behavior. For the same string, it is not matching. I guess this has something to do with String.Equals behavior.
Even ...
0
votes
3answers
666 views
Returning different data types C#
i have create a class library (DLL) with many different methods. and the return different types of data(string string[] double double[]). Therefore i have created one class i called CustomDataType for ...
1
vote
2answers
63 views
Class inside a class written in c# 'is not callable' from IronPython
I'm using a .NET library written in c#. Currently I'm running a procedure in IronPython to to call a procedure to create an object like this:
foo = bar.ProcessAndCreateFoo() # bar is a Bar object
...
0
votes
2answers
109 views
accessing form class object in a separate form C# [duplicate]
Possible Duplicate:
Use of one class object in another class?
This will be my first post because I can normally find my answer with a few web searches. I am mainly a C++ programmer but I am ...
2
votes
2answers
312 views
c# PropertyGrid restricting edits on List<T> items
I have a app that makes use of the PropertyGrid in C#/.NET
the PropertGrid holds onto the MyAppObject class/object shown below..
class MyAppObject
{
private List<MyObject> oItems;
...
0
votes
0answers
40 views
Using EF purely as an object graph manager-tracker
I'm building a complex client application that should obtain it's data from the application server over the wire (WCF, REST, SOAP, whatever).
What I need is an object graph manager that should be ...
1
vote
3answers
68 views
All members of a class are object type
I have a C# class and all of its members are of type object.
What are the risks and warnings? Will it take more resources?
What is the difference between object and Object in C#?
2
votes
4answers
44 views
In .Net How Do You Check Whether Two Identifiers Point at Same INSTANCE of An Object?
I keep wanting to know if two variables are pointing at the same instance of a class. Sounds obvious, but can it be done?
For example. Imagine you have the following code with an operator called ...
1
vote
1answer
113 views
Dll does not seem to be read, why?
I am creating a application form to view/change a tag from a software called InTouch.
I added the dll as a reference and I would like to use the Read(string tagName) fct in the IOM.InTouchDataAccess. ...
2
votes
6answers
131 views
Objects with many value checks c#
I want to see your ideas on a efficient way to check values of a newly serialized object.
Example I have an xml document I have serialized into an object, now I want to do value checks. First and ...
0
votes
4answers
758 views
Creating Dynamic Objects
How to dynamically create objects?
string[] columnNames = { "EmpName", "EmpID", "PhoneNo" };
List<string[]> columnValues = new List<string[]>();
for (int i = 0; i < 10; i++)
{
...
2
votes
2answers
79 views
Is there any simple way to check any class instance for modifications?
Let's say i have a class like that:
class Test
{
string asd;
int dsa;
}
Later, I create instance of this class, then later it may change values for data members.
I need a simple compare ...
1
vote
1answer
196 views
Perform Aggregate by grouping in Object list using LINQ
I need to calculate the Aggregate of a certain property from an object list by grouping the objects based on another property.. For example, I have a list of 5 objects as below:
list<cls> ...
2
votes
1answer
98 views
.net deserialize xml to one of multiple known objects
Having tried searching with various combinations of ".net deserialize xml one many known object type"... and not finding anything that makes sense, I'm here now.
I get 1 of 5 unrelated objects ...
6
votes
9answers
455 views
Count instances of the class [duplicate]
Possible Duplicate:
how can i find out how many objects are created of a class in C#
Is it possible to get number of instances which is active(created and not yet destroyed) for selected ...
0
votes
4answers
313 views
Should we set variables to null, false and create new objects when initializing?
I was on the IBM page looking for some filenet example code for .NET and I found this:
namespace CESample
{
// Represents the connection with the Content Engine.
public class CEConnection
...
0
votes
1answer
251 views
Sharing object in memory in .Net
is it possible to share a custom object model in memory space across .NET applications without duplicating working memory in each of functioning application's memory scope?
-1
votes
4answers
327 views
Check whether class members are null from Object list
Is there way to check whether the particular class members are null ?
I have a class with N number of properties (members). I got to create many Objects for the class and may assign the values for ...
1
vote
0answers
95 views
Dynamic Property creation in .net from Column-Names of Table
My current Scenario is, I manually create a property FirstName(of a Class Student) in .cs file and assign it to the Column name First_Name .
i.e. I have to manually write the Properties(private ...
6
votes
1answer
68 views
Where to know/check: Int32 inherits from ValueType, ValueType inherits from Object?
I cannot find the relationships between these types using .Net reflector. Any idea?
0
votes
3answers
322 views
Create class object based on string identifier in C#
I am new to programming to kindly bear me. I using c sharp, .net 4, VS 2010
I have a interface class called IHandler with method IsValidate().
I have a message like AMOUNT 50 22.4, where AMOUNT is ...
0
votes
3answers
203 views
.net why cannot convert from int[] to object[]
I have the following method
private void AM(object[] x)
{
}
When we call it like this:
int[] x = new int[1];
AM(x);
We get a compilation error, something like "invalid arguments", "cannot ...
1
vote
2answers
102 views
IComparable not sorting objects correctly
I have a list of objects that store search results for a feed search I have made. While adding to the list I give the object a score on how relevant the result is so that I can push these results to ...
1
vote
5answers
3k views
How to convert object to Dictionary<TKey, TValue> in c#?
I would use .ToDictionary() but type of object doesn't know that ofc. What can I do?
public static void MyMethod(object obj)
{
if (typeof(IDictionary).IsAssignableFrom(obj.GetType()))
{
...
0
votes
6answers
107 views
Why doesn't Any() work on a c# null object
Should I feel annoyed that when calling Any() on a null object it throws an ArgumentNullException in c#?
Surely if the object is null, there definitely aren't 'any', and it should probably return ...
0
votes
0answers
300 views
KSoap2 2.6.5 Request using complex objects to .Net asmx webservice fails with type was not recognized: name='anyType'
I am new to Android app development and this group, so apologies in advance if I have misposted this question or provided to much data. If so please let me know accordingly. My object is to get an ...
1
vote
5answers
61 views
Return object only if object could be properly created
I'm very new to C# programming and I'm struggling a bit with OOP.
I have created a class with a method that analyzes a text file and creates an object based on its content. I want this function to ...

