Click here to Skip to main content
15,890,506 members

Survey Results

Will you upgrade to .NET   [Edit]

Survey period: 21 Jul 2000 to 27 Jul 2000

There has been a strong reaction to .NET - some hate it, some can't wait to get their hands on it. Will you use?

OptionVotes% 
Yes18751.23
No17848.77



 
General".NET" Information and FAQ's Pin
Robert Scoble30-Jul-00 17:23
sussRobert Scoble30-Jul-00 17:23 
GeneralC# and .NET Knockers Pin
Lee Nowotny25-Jul-00 6:59
Lee Nowotny25-Jul-00 6:59 
GeneralRe: C# and .NET Knockers Pin
R. Spekreijse26-Jul-00 0:01
sussR. Spekreijse26-Jul-00 0:01 
GeneralRe: C# and .NET Knockers Pin
Norm Almond26-Jul-00 4:50
sussNorm Almond26-Jul-00 4:50 
GeneralRe: C# and .NET Knockers Pin
Keith Hill26-Jul-00 6:03
Keith Hill26-Jul-00 6:03 
GeneralRe: C# and .NET Knockers Pin
Andrew Peace26-Jul-00 7:41
Andrew Peace26-Jul-00 7:41 
GeneralRe: C# and .NET Knockers Pin
Keith Hill26-Jul-00 6:06
Keith Hill26-Jul-00 6:06 
GeneralRe: C# and .NET Knockers Pin
Nobody26-Jul-00 9:41
Nobody26-Jul-00 9:41 
GeneralRe: C# and .NET Knockers Pin
Keith Hill26-Jul-00 15:59
Keith Hill26-Jul-00 15:59 
The really cool thing about the .NET technologies is that it will make programming simpler. At least for us C/C++ types. Check out the following program. It is about 24 lines and displays a bitmap in the main window. Think about how many lines of code that would take you in C++/Win32 API or even C++/MFC. Now, I will agree with you that while COM is neat too, it is a much harder pill to swallow (GUIDs, IDL, apartments, IUnknown, IDispatch, etc).

<br />
using System;<br />
using System.Drawing;<br />
using System.WinForms;<br />
<br />
public class MainWindow : System.WinForms.Form {<br />
    private System.Drawing.Bitmap m_bitmap;<br />
<br />
    public MainWindow() {<br />
        this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);<br />
        this.Text = "Display Bitmap";<br />
        this.ClientSize = new System.Drawing.Size(600, 480);<br />
        m_bitmap = new<br />
Bitmap(@"c:\tmp\EricaAndJeremy.jpg");<br />
    }<br />
<br />
    protected override void OnPaint(PaintEventArgs e) {<br />
        e.Graphics.DrawImage(m_bitmap, 10,<br />
10);<br />
    }<br />
<br />
    // The main entry point for the application.<br />
    public static void Main() {<br />
        Application.Run(new MainWindow());<br />
    }<br />
}

GeneralRe: C# and .NET Knockers Pin
Keith Hill26-Jul-00 16:02
Keith Hill26-Jul-00 16:02 
GeneralRe: C# and .NET Knockers Pin
Keith Hill26-Jul-00 16:05
Keith Hill26-Jul-00 16:05 
GeneralRe: C# and .NET Knockers Pin
Norm Almond26-Jul-00 21:31
sussNorm Almond26-Jul-00 21:31 
GeneralWhy against C#? Pin
Uncle Sam27-Jul-00 21:13
Uncle Sam27-Jul-00 21:13 
GeneralMissing options Pin
Ramon Smits25-Jul-00 0:21
Ramon Smits25-Jul-00 0:21 
GeneralIMHO... Pin
Anonymous23-Jul-00 17:55
Anonymous23-Jul-00 17:55 
GeneralRe: IMHO... Pin
Leslie Nassar24-Jul-00 6:34
Leslie Nassar24-Jul-00 6:34 
GeneralRe: IMHO... Pin
jmw26-Jul-00 7:46
jmw26-Jul-00 7:46 
GeneralStrange Poll... Pin
Peter21-Jul-00 14:06
Peter21-Jul-00 14:06 
GeneralRe: Strange Poll... Pin
Chris Maunder21-Jul-00 16:10
cofounderChris Maunder21-Jul-00 16:10 
GeneralRe: Strange Poll... Pin
joe22-Jul-00 14:08
joe22-Jul-00 14:08 
GeneralRe: Strange Poll... Pin
Peter23-Jul-00 10:20
Peter23-Jul-00 10:20 
GeneralRe: Strange Poll... Pin
Tom Archer25-Jul-00 22:39
Tom Archer25-Jul-00 22:39 

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.