C#
C# (see section on name, pronunciation) is an object-oriented programming language developed by Microsoft as part of the .NET initiative and later approved as a standard by ECMA (ECMA-334) and ISO (ISO/IEC 23270).
Application
Any
Platform
Any
License
Any
I have a BIP-1300 device running Windows CE 5 that I need to develop a proof of concept application for using C#. The client does not have a programmers manual and the manufacturer has not not...
thanks for clarifying that :)
I think what the problem might be is that you are attacking this in a slightly different order than intended.
Commands are more intended to be created/destroyed per-use.
So if you need to...
A static variable is no different than any other variable in that it still needs to be initialized before being used in all the same cases that a non-static variable needs to be initialized.
Most...
I am sure it is possible to read from a hard disk somewhere in the world using some kind of software on a computer of some kind at 60MB/sec
But since you haven't posted anything resembling a...
Evening,
I was working through some tutorials on static properties/variables and hit a snag with the following code. i dont actually have access to my pc atm but supposidly this works.......
I want to read from a SATA II Hard with rate 60MB/Sec (with 16 MB Buffer on HardDrive) for 12 minutes.
I wrote a Program in C#. But i reach to rate 40MB/Sec !!
Is it possible to read Data from...
Hi,
I have a problem using ADO.Net to access data from C#. Exactly, I have a problem with stored procedures. I have a database ProgrammersHeaven in MS Sql Server and aplication which inserting,...
Thx man
really appreciate your help!!!
aye ok cool. i think most of the books n articles i have read have focused on c# 2.0 so thats probably why i hadnt see it before.
Cheers for clarify that.
Rgds
Fraz
Do some research on using data bindings.
If you create a common binding between a datagrid and then have each of your textboxes bound to a property of an object collection - then when you select...
Char is a data type like a number would be. Except instead of holding a numeric value it holds a single letter or "character".
What you are looking to use is a "string" which can hold a whole...
hi
I am using c#.net as frontend and sql server as my backend. i have created one database. in that database i have stored id ,name and marks of the student and i have displayed in the...
hello.
im doing a simple program that lets you type in your name and the read it back to you the problem is that the program crashes and I could use som help with what Iam doing wrong. Here is the...
So in there I am using what is called a foreach loop.
A foreach loop itterates through any kind of collection or array.
The statement there is basically saying
Run a loop once for each item in...
Hi DataDink, yeah that was one of the points i was stubling on. Thanks very much for clarifying polymorphism. The examples were spot on but the comparison to what you would have to do if you didnt...
Hi all,
I need to re-size mp4,3gp,rm,3g2,mpg,wmv video file in my given format.
Using c# how can i do that.Can anybody help me or guide me to do it.
Thanks in advance.
riad
Shoot - ya, you're right - I just caught that typo - my original method body should have been animal.MakeASound()
Sorry if that's what confused you.
yes that sounds correct.
So if you're wondering "why in the world would you ever pass something as superclass A and not concrete classes B, C, or D?"
This is actually the whole reason why you...
you can pass an instantiated subclass to a methods AS a superclass.
ok thats completely over my head :( n why would u want to pass it as a superclass and not a subclass?
so the general gist...