Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~817 People Reached
Favorite Forums

4 Posted Topics

Member Avatar for francisprite

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.

Member Avatar for onkar81
0
291
Member Avatar for natpu

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#). …

Member Avatar for rapture
0
283
Member Avatar for natpu

[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 …

Member Avatar for natpu
0
99
Member Avatar for Karil

Interface just contains the functions that are to be used in the class. Since C# does not support multiple inheritance interface is much used.

Member Avatar for natpu
0
144

The End.