No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Try to build SudoKu game. First try for 3 * 3 matrix. If you enter teo or three numbers in the block, it should automatically fill the rest of the fields. Really interesting.
Hello i am Sarathy, I am pursuing my final year MCA, my projects are just 2 months head. I have joined in ASP.Net class before 2 months, the course comprises of C#, GUI, XML, ADO.Net, ASP.Net in the order which i specified. Just now they have completed the first module(C#). …
[code]using System; class abc { public static void fun() { Console.WriteLine("Function"); } public static void Main(string[] args) { ThreadStart ts=new ThreadStart(fun()); Console.WriteLine("Main begins"); Thread t=new Thread(ts); t.Start(); Console.WriteLine("Main ends"); } } [/code] [B]Output showing[/B] Main Begins Main ends Function. [B]My Question[/B] The thread has been started and then the "Main …
Interface just contains the functions that are to be used in the class. Since C# does not support multiple inheritance interface is much used.
The End.
natpu