December 27th, 2011 08:14 AM
Thank you, should have mentiond that I did all that...
Downloaded a couple of them among others, ObjectListView, but they gave errors and I am not sure whether that is because I am using the...
December 22nd, 2011 09:40 AM
Hi,
Not sure if this is the right forum to ask...
I use Visual C# 2008 Express Edition and am looking for custom listview component that supports multiple lines per row and different font...
April 12th, 2011 04:21 PM
Thanks a lot RedBully!
I will try tomorrow, around midnight over here.
It has to sort on ints2 and then ideally a specific element I can pass, something like this?
public class myClass...
April 12th, 2011 12:38 PM
That is an impossible situation considering how these arrays are build. But if it would be possible, then it doesn't really matter how this is handled.
April 12th, 2011 10:17 AM
Hi,
icomparer confuses me!
I have a class, very simple put:
public class myClass{
int[] ints1;
int[] ints2;
December 1st, 2009 02:11 PM
Probably both! ;)
This is about www.unity3d.com. They have a free version. We are about to outsource some work that uses custom editor scripts we made. We don't want to make it too easy to access...
December 1st, 2009 04:16 AM
I must do a terrible job of explaining or I don't get it ;)
The main application is the dynamically created namespace which is created after changes in my scripts that will part of the main...
November 30th, 2009 04:15 PM
dynamically generated class library by the software itself:
Namespace1
This Namespace includes the software runtime classes and Class1 which is a script added by me.
My class library:...
November 29th, 2009 04:19 AM
The 2nd dynamically created namespace is created by the third party software and it includes runtime classes of this 3rd party software plus some of my classes that have to be in this dynamically...
November 28th, 2009 03:21 AM
My classes in the dynamically created namespace have to be part of that namespace otherwise they cannot be used in this 3rd party software. Not sure though if that is what you meant by repeating your...
November 27th, 2009 01:39 PM
That is not what I want to do but that is how the software works I want to use this class library in. My "public" c# scripts with the classes I need access to are part of that namespace.
November 27th, 2009 10:43 AM
Is this possible at all?
All info I found so far about reflection is creating a new instance of a class using reflection.
if I do
Type uMyClass;
foreach (Type type1 in...
November 26th, 2009 07:40 AM
Thanks Boudino, I am not really that much familiar with what you are saying. But I do not want to create an instance of the class in the other namespace. I want to reference instances of that class...
November 26th, 2009 04:45 AM
Obviously the part
Assembly *** = Assembly.GetExecutingAssembly();
should reference the other assembly!
November 26th, 2009 04:29 AM
Hi,
I am new to c# so far so good. But I got stuck. I am creating a class library. Some of the methods in a class need a reference to an instance of a class in another namespace. I cannot simply...