Click here to Skip to main content
15,899,313 members
Home / Discussions / C#
   

C#

 
GeneralRe: Operator Over Loading Pin
Daniel Turini19-Nov-04 20:45
Daniel Turini19-Nov-04 20:45 
GeneralRe: Operator Over Loading Pin
Sendilkumar.M21-Nov-04 16:31
Sendilkumar.M21-Nov-04 16:31 
GeneralI need UPS minidriver sample Pin
tlongman19-Nov-04 13:29
tlongman19-Nov-04 13:29 
GeneralGetHashCode() Pin
Joe Woodbury19-Nov-04 7:28
professionalJoe Woodbury19-Nov-04 7:28 
GeneralRe: GetHashCode() Pin
Daniel Turini19-Nov-04 7:39
Daniel Turini19-Nov-04 7:39 
GeneralRe: GetHashCode() Pin
Heath Stewart19-Nov-04 7:54
protectorHeath Stewart19-Nov-04 7:54 
GeneralImport data Pin
bouli19-Nov-04 6:57
bouli19-Nov-04 6:57 
GeneralRe: Import data Pin
Heath Stewart19-Nov-04 8:03
protectorHeath Stewart19-Nov-04 8:03 
The .NET Framework base class library (BCL) is just that - a class library. It does not - and should not - contain such functions as data import, but should - and does - facilitate it. That's what a base class library is for. It's not a piece of software like Excel - which is a functional product.

Besides, into what format are you importing data? There's no standard format in .NET for data like an XLS for Excel or something. The only thing that comes close is to import data from either a database or an XML file (the serialized representation) into a DataSet. Importing data into your own classes is specific to your implementation.

The BCL facilitates that through I/O classes, data readers and adapters, the DataGrid, and just about anything else you can use to import and manipulate data. How you do that depends on your requirements, but there are classes to help that like the FileStream, the TextReader, a DataReader derivative, the DataAdapter derivatives, and many, many more.

This posting is provided "AS IS" with no warranties, and confers no rights.

Software Design Engineer
Developer Division Sustained Engineering
Microsoft

[My Articles] [My Blog]
GeneralRe: Import data Pin
bouli19-Nov-04 8:36
bouli19-Nov-04 8:36 
GeneralRe: Import data Pin
Nick Parker19-Nov-04 9:32
protectorNick Parker19-Nov-04 9:32 
GeneralRe: Import data Pin
bouli19-Nov-04 9:47
bouli19-Nov-04 9:47 
GeneralRe: Import data Pin
Dave Kreskowiak19-Nov-04 10:00
mveDave Kreskowiak19-Nov-04 10:00 
GeneralRe: Import data Pin
bouli19-Nov-04 10:07
bouli19-Nov-04 10:07 
GeneralRe: Import data Pin
Heath Stewart19-Nov-04 10:10
protectorHeath Stewart19-Nov-04 10:10 
GeneralRe: Import data Pin
bouli19-Nov-04 10:14
bouli19-Nov-04 10:14 
GeneralRe: Import data Pin
Heath Stewart19-Nov-04 10:16
protectorHeath Stewart19-Nov-04 10:16 
GeneralRe: Import data Pin
bouli19-Nov-04 10:29
bouli19-Nov-04 10:29 
GeneralRe: Import data Pin
Nick Parker19-Nov-04 19:41
protectorNick Parker19-Nov-04 19:41 
GeneralRe: Import data Pin
bouli19-Nov-04 21:52
bouli19-Nov-04 21:52 
GeneralRe: Import data Pin
Nick Parker20-Nov-04 5:07
protectorNick Parker20-Nov-04 5:07 
GeneralRe: Import data Pin
bouli20-Nov-04 5:08
bouli20-Nov-04 5:08 
GeneralRe: Import data Pin
Heath Stewart19-Nov-04 10:13
protectorHeath Stewart19-Nov-04 10:13 
Generalenum Questions Pin
niceguyeddie19-Nov-04 6:31
niceguyeddie19-Nov-04 6:31 
GeneralRe: enum Questions Pin
Daniel Turini19-Nov-04 6:55
Daniel Turini19-Nov-04 6:55 
GeneralRe: enum Questions Pin
Dennis C. Dietrich19-Nov-04 6:59
Dennis C. Dietrich19-Nov-04 6:59 

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.