blah blah blah is here! blah blah » Close

1
votes
1 answers

C# Generics Question

Here's some code I have written: [code] using System; namespace GenericsTest { class Program { static void Main(string[] args) { Console.WriteLine(Create<MyClass>()); Console ...

2
votes
1 answers

style and efficiency question: arrays versus List<generic>

I find that I practically never use arrays anymore because of the potential waste of memory from having to declare arrays more than large enough. Another reason is because arrays look old fashioned to me. List<> seems to have largel ...

1
votes
1 answers

Is this speed possible?

Dear All, I want to ask something about speed. My teacher asked me to make a software in C# that acquires 1000 data per second, or 1ms per data. The data is a string with 16 characters (16 bytes). The data itself is coming from a microco ...

Feedback