X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=man%2Fmono-config.5;h=3a2129f43306cb8e44d12234ca1bc0256b2d6950;hb=ad006452b444bb408a418b0f4e888fdf290c76ef;hp=48a099e474bda26ea9051de9b2a3ee50115f88b3;hpb=64f85a65b023522d3f34e9932e6a843e0ad8fc3b;p=mono.git diff --git a/man/mono-config.5 b/man/mono-config.5 index 48a099e474b..3a2129f4330 100644 --- a/man/mono-config.5 +++ b/man/mono-config.5 @@ -38,7 +38,9 @@ The element takes two attributes: .TP .I dll -This should be the same string used in the DllImport attribute +This should be the same string used in the DllImport attribute, optionally +prefixed with "i:" to indicate that the string must be matched in a +case-insensitive way .TP .I target This should be the name of the library where the function can be found: @@ -94,9 +96,17 @@ The following example maps references to the `cygwin1.dll' shared library to the `libc.so.6' file. .nf - + .fi +The library name in the DllImport attribute is allowed to be in any +case variant, like the following examples: +.nf +.nf + [DllImport ("cygwin1.dll")] + [DllImport ("Cygwin1.dll")] + [DllImport ("cygwiN1.Dll")] +.fi .PP This one maps the following C# method: .nf