What is the gac, and where is it located?
Answer / swayam pravash ray
GAC stands for Global Assembly Cache. For dot net version 2.0 & 3.5 the location for GAC is : C:Windowsassembly
For dotnet version 4.0 and above the location for GAC is :C:WindowsMicrosoft.NETassembly
| Is This Answer Correct ? | 0 Yes | 0 No |
Define c# and list the features.
int i = 1; int j = 1; System.Console.WriteLine(i == j); System.Console.WriteLine(i.ToString() == j.ToString()); System.Console.WriteLine((object)i == (object)j); Give the sample code above, what is the output to the console?
Can you access a hidden base class method in the derived class?
What is session variable in c#?
Method1() { int a=0, b=0, c=0; Monitor.Enter(this) c = 12; b = 3; a = c/b Moniter.Exit(this) } Method1() { int a=0, b=0, c=0; c = 12; b = 3; lock(this){ a = c/b } } Choose correct answer. a. Upon completion, Method1 and Method2 release the lock b. Upon Comletion, Method1 release the lcok and Method2 not. c. Upon Completion, Method2 release the lock and Method1 not. d. Upon Completion, neither Method1 or Method to release the lock.
What is a console device?
What is a ienumerator?
What is getenumerator?
Are c# constructors the same as c++ constructors?
What is static noise?
Explain Direct CAST vs CType ?
syntax for writing private method in a interface
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)