示例#1
0
        static void Main(string[] args)
        {
            AttributeBackingStore store = new AttributeBackingStore(@"..\..\nativeTest.h");

            var allMethods = store.GetAllMethodProperties();

            allMethods.ForEach(p => p.Value.Add(new TestProperty(TestPropertyType.Method, p.Key, "Ignore", "TRUE")));

            store.Print();
        }
示例#2
0
 public Test(string filePath)
 {
     _backingStore = new AttributeBackingStore(filePath);
 }