I am a rookie at the computers and wanted to know what does it means when we say 16-bit windows or 32-bit windows or 32-bit x64 windows or IA64 version of windows. please anybody answer my question.
digitalangel
Posts
-
please tell me this ?????? -
a beginner needs help !!!!I am aq rookie at the computers and wanted to know what does it means when we say 16-bit windows or 32-bit windows or 32-bit x64 windows or IA64 version of windows. please anybody answer my question.
-
please help me !!!!!!!!I have created a class library and want to pass value into a unction that is inside the class library.its public and static type. i want to pass the value from the main windows application i created after this class library.
-
class library and windows application trouble.How to access the value inserted in a windows application form into a class library created of your own ? the namespace created is included in the window application.
-
why ths code is not workingthe method add and the entry point method main() are in different classes so an object will be required to call add. not exactly an object but add will be called using the class name instead of the object name. further the add is a private method and it is being called through the public method calling. now method calling is also in a different class from the class in which entry point is. now to use calling we have to create an object but it is not working. i don't know why. please look at it once more.
-
why ths code is not workingusing System; class test { private static int add(int x,int y) { return x+y; } public int calling(int x, int y) { int k; test obj=new test(); k=obj.add(x,y); return k; } } class now { public static void Main() { int sum,x,y; Console.WriteLine("enter x -->> "); x=int.Parse(Console.ReadLine()); Console.WriteLine("enter y -->> "); y=int.Parse(Console.ReadLine()); test obj1=new test(); sum=obj1.calling(x,y); Console.WriteLine("the value is --> {0}",sum); } }