Friday, July 15, 2016

What is the difference between bool and Boolean types in C#?

bool is an alias for System.Boolean just as int is an alias for System.Int32.
C# Type.NET Framework Type
bool System.Boolean
byte System.Byte
sbyte  System.SByte
char System.Char
decimal System.Decimal
double System.Double
float System.Single
int System.Int32
uint System.UInt32
long System.Int64
ulong System.UInt64
object System.Object
short System.Int16
ushort System.UInt16
string System.String

Folder Permissions on Windows Azure Web Sites

What you can do is change permissions on a local instance of the application and then deploy it with Web Deploy. When you do that, Web Deploy will use the SetAcl operation to change permissions.
SetACL – Automate Permissions and Manage ACLs...
----------------------------------------------------------------------------------------------------------------------

Folder permissions cannot be set/customized. This means whatever location your app writes to should be under your site root.