Thanks for this tutorial, it will probably be useful in my next application.
i could use this for making Graphical effects.Thanks for the tut
How do i + Rep you ?
Hi, I'm having some errors with using your coding. I'm still a beginner in C#. Can you tell me why I encounter errors like "the name xxxx does not exist in the current context" What does current context means? Thank you.
this means, you're trying to reference an object that doesnt exist. example
int Test = 1;
Console.WriteLine(test); //because c# is case sensitive, test does not exist in this context.
This could be caused by something like this.. or even
{
int test = 4;
}
Console.WriteLine(test); //test no longer exists
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks