Click here to Skip to main content
15,906,626 members
Home / Discussions / C#
   

C#

 
GeneralRe: Accesing Data using DMO Pin
Henry Minute6-May-10 1:45
Henry Minute6-May-10 1:45 
GeneralRe: Accesing Data using DMO Pin
Nandakumar.n.pai6-May-10 20:46
Nandakumar.n.pai6-May-10 20:46 
GeneralRe: Accesing Data using DMO Pin
Henry Minute7-May-10 1:32
Henry Minute7-May-10 1:32 
GeneralRe: Accesing Data using DMO Pin
Nandakumar.n.pai7-May-10 18:57
Nandakumar.n.pai7-May-10 18:57 
QuestionSelect local class pointer to static class instance with property explorer (Best description I can manage!). Pin
kevsticle25-May-10 2:37
kevsticle25-May-10 2:37 
AnswerRe: Select local class pointer to static class instance with property explorer (Best description I can manage!). Pin
Michel Godfroid5-May-10 3:29
Michel Godfroid5-May-10 3:29 
GeneralRe: Select local class pointer to static class instance with property explorer (Best description I can manage!). Pin
kevsticle25-May-10 3:37
kevsticle25-May-10 3:37 
GeneralRe: Select local class pointer to static class instance with property explorer (Best description I can manage!). Pin
Michel Godfroid5-May-10 6:25
Michel Godfroid5-May-10 6:25 
Go easy, start with plain arrays: (of course replace Freds_Box with the REAL class)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication2
{
    public class Freds_Box
    {
        public int somedata;
        public Freds_Box(int HowMuch)
        {
            somedata = HowMuch;
        }
    }
    public class Fred
    {
        private  Freds_Box[] freds_Boxes = new Freds_Box[] {new Freds_Box(25),
                                                            new Freds_Box(79)
                                                           };

        public Freds_Box[] Freds_Boxes
        {
            get { return freds_Boxes; }
            set { freds_Boxes = value; }
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            Fred container = new Fred();
            Console.Write(container.Freds_Boxes[0].somedata);
            Console.Write(container.Freds_Boxes[1].somedata);
        }
    }
}

AnswerRe: Select local class pointer to static class instance with property explorer (Best description I can manage!). Pin
OriginalGriff5-May-10 6:09
mveOriginalGriff5-May-10 6:09 
QuestionDisplay List items? Pin
spankyleo1235-May-10 1:12
spankyleo1235-May-10 1:12 
AnswerRe: Display List items? Pin
Henry Minute5-May-10 1:15
Henry Minute5-May-10 1:15 
AnswerRe: Display List items? Pin
Peace ON5-May-10 2:01
Peace ON5-May-10 2:01 
AnswerRe: Display List items? Pin
Luc Pattyn5-May-10 2:52
sitebuilderLuc Pattyn5-May-10 2:52 
QuestionTCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 0:58
Tunisien865-May-10 0:58 
AnswerRe: TCP/IP connexion failed in csharp smart device Pin
Eddy Vluggen5-May-10 1:03
professionalEddy Vluggen5-May-10 1:03 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 1:10
Tunisien865-May-10 1:10 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Eddy Vluggen5-May-10 1:22
professionalEddy Vluggen5-May-10 1:22 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 2:25
Tunisien865-May-10 2:25 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 2:52
Tunisien865-May-10 2:52 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Michel Godfroid5-May-10 4:04
Michel Godfroid5-May-10 4:04 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 4:22
Tunisien865-May-10 4:22 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Michel Godfroid5-May-10 4:47
Michel Godfroid5-May-10 4:47 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 5:24
Tunisien865-May-10 5:24 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Michel Godfroid5-May-10 5:52
Michel Godfroid5-May-10 5:52 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien866-May-10 1:43
Tunisien866-May-10 1:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.