The Dot Net Blog
Be Sharp with C Sharp..
Sunday, July 22, 2007
Out: Keyword: Basics, Code listing
CodeListing:Out
class OutExample
{
static void Method(out int i)
{
i=44;
}
static voic Main()
{
int val; // val not initialized before use
Method(out val) // val is now 44
}
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment