Charles Petzold

NET Book Zero What the C or C++ Programmer Needs to Know about C# and the NET Framework

Notify me when the book’s added
To read this book, upload an EPUB or FB2 file to Bookmate. How do I upload a book?
This book is currently unavailable
327 printed pages
Have you already read it? How did you like it?
👍👎

Quotes

  • Екатерина Жовницкаяhas quoted11 years ago
    DLL system.windows.forms.dll. The C# compiler will access mscorlib.dll by default, but for other DLLs, you‘ll need to tell the compiler the assembly in which the classes are located. These are known as references. In Visual Studio, right click
  • Екатерина Жовницкаяhas quoted11 years ago
    single statement: Date[] dates = new Date[3]; dates[0] = new Date(2007, 2, 2); dates[1] = new Date(2007, 8, 29); dates[2] = new Date(2007, 10, 22); Version 1.1 Page 139.NET Book Zero Charles Petzold Or the three elements can be initialized during array creation: Date[] dates = { new Date(2007, 2, 2), new Date(2007, 8, 29), new Date(2007, 10, 22) }; What you cannot do in C# is initialize an array by just listing the values of the fields as you
  • Екатерина Жовницкаяhas quoted11 years ago
    aring an array of initialized objects. Here‘s some code that is certainly explicit about which fields of
fb2epub
Drag & drop your files (not more than 5 at once)