Dilvid
Feb 23rd, 2006, 06:11 AM
Lo all,
having a little trouble with a few get and set properties im trying to do, ther reason why is they are part of an array. I can do this is vb6 pretty easy but dont know how to do it in C#.
Can someone point me in the right direction, currently I have this which is how it would be done if acAccountNote wasnt an array but unfortunatly it is hehe. Any ideas how to do this with an array??
private string AccountNote
{
get
{
return acAccountNote;
}
set
{
acAccountNote = value;
}
}
having a little trouble with a few get and set properties im trying to do, ther reason why is they are part of an array. I can do this is vb6 pretty easy but dont know how to do it in C#.
Can someone point me in the right direction, currently I have this which is how it would be done if acAccountNote wasnt an array but unfortunatly it is hehe. Any ideas how to do this with an array??
private string AccountNote
{
get
{
return acAccountNote;
}
set
{
acAccountNote = value;
}
}