Hello,
could someone explain what that 'assembly' line does in the next MS example?
(from help: waitall method).
Thank you
Frank
using System;
using System.IO;
using System.Security .Permissions;
using System.Threadin g;
// Request permission to create and write files to C:\TestTest.
[assembly: FileIOPermissio nAttribute(Secu rityAction.Requ estMinimum,
All = @"C:\TestTes t")]
class Test
{
static void Main
could someone explain what that 'assembly' line does in the next MS example?
(from help: waitall method).
Thank you
Frank
using System;
using System.IO;
using System.Security .Permissions;
using System.Threadin g;
// Request permission to create and write files to C:\TestTest.
[assembly: FileIOPermissio nAttribute(Secu rityAction.Requ estMinimum,
All = @"C:\TestTes t")]
class Test
{
static void Main
Comment