本文整理汇总了C#中Key.SetValue方法的典型用法代码示例。如果您正苦于以下问题:C# Key.SetValue方法的具体用法?C# Key.SetValue怎么用?C# Key.SetValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Key
的用法示例。
在下文中一共展示了Key.SetValue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SetLogicalViewMapping
private void SetLogicalViewMapping(Key key, Guid logicalView, object editorFactory)
{
if (editorFactory != null)
{
key.SetValue(logicalView.ToString("B").ToUpperInvariant(), TryGetGuidFromObject(editorFactory).ToString("B").ToUpperInvariant());
}
}
开发者ID:Sunzhuokai,项目名称:VSSDK-Extensibility-Samples,代码行数:7,代码来源:ProvideXmlEditorChooserDesignerViewAttribute.cs
示例2: WriteValue
private void WriteValue(RegistrationContext context, Key targetKey, string name, object value)
{
if (value == null)
{
return;
}
else if (value is Type)
{
Type type = (Type)value;
Guid guid = type.GUID;
if (guid != Guid.Empty)
{
targetKey.SetValue(name, guid.ToString("B"));
}
}
else if (value is Array)
{
Array array = value as Array;
using (Key childKey = targetKey.CreateSubkey(name))
{
for (int i = 0; i < array.Length; i++)
{
Object element = array.GetValue(i);
WriteValue(context, childKey, i.ToString(), element);
}
}
}
else if (value.GetType().IsPrimitive)
{
targetKey.SetValue(name, Convert.ToInt32(value));
}
else
{
String str = value.ToString();
if (!String.IsNullOrEmpty(str))
{
targetKey.SetValue(name, context.EscapePath(str));
}
}
}