You're viewing all posts tagged with ASP.NET

Difference between “|” and “||”

What a difference they have!!

Comments

Calling a method using its name as a string value

System.Reflection.MethodInfo is the one that I can use the name of method as a string value to call the method.

In order to get the method, the typeof() keyword should be used, instead of the Type.GetType() method.

Comments