Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Passing dataset by reference
Message
 
 
À
12/03/2012 12:56:51
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Versions des environnements
Environment:
C# 2.0
Divers
Thread ID:
01538045
Message ID:
01538072
Vues:
25
>>What if I passed the ds to the MyClass.MyMethod (without the Out parameter) and inside this method called adapter Fill() method with this dataset, would .NET fill the new instance of the dataset or the one created in the calling routine?
>
>There's no new instance if you don't create one! If all you do is Fill, then it's filling the passed in reference and you're good. Also, with DataSets, if you wanted to start with a "clean" DataSet, rather than creating the new one, you could just execute the .Clear() method.
>
>
MyMethod(DataSet ds)
>{
>    // clear it if you want to start with an empty DataSet
>    // ds.Clear();
>    Adapter.Fill(ds)
>}
>
Again, thank you for taking the time to explain. As you can see I didn't realize that the line [ds = null] created a new instance. I thought that the new instance has to be created with declaration like:
Dataset dsName;
This is what was confusing that without declaring I was creating new instance.
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform