568. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/26/2017 10:44:23 PM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

568.1 Files compared

# Location File Last Modified
1 Fri Oct 27 02:44:23 2017 UTC
2 OSCIF_BMS_v2_iter 2_September_2017.zip\BMS_Cand\Source\Sources\BMS.Vista.TestEis\BMS.Utils AttributeHelperExtension.cs Wed Oct 18 18:47:02 2017 UTC

568.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 0 0
Changed 0 0
Inserted 1 17
Removed 0 0

568.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

568.4 Active regular expressions

No regular expressions were active.

568.5 Comparison detail

        1   using Syst em;
        2   using Syst em.Collect ions.Gener ic;
        3   using Syst em.Linq;
        4   using Syst em.Text;
        5   using Syst em.Compone ntModel;
        6  
        7   namespace  BMS.Utils
        8   {
        9       public  static cl ass Attrib utesHelper Extension
        10       {
        11           pu blic stati c string T oDescripti on(this En um value)
        12           {
        13                var da =  (Descript ionAttribu te[])(valu e.GetType( ).GetField (value.ToS tring())). GetCustomA ttributes( typeof(Des criptionAt tribute),  false);
        14                return d a.Length >  0 ? da[0] .Descripti on : value .ToString( );
        15           }
        16       }
        17   }