9 references to GetConstructionString
System.Windows.Forms.Design.Tests (9)
CodeDomHelpers.cs (9)
19
Assert.Equal(
GetConstructionString
(expected[i]),
GetConstructionString
(actual[i]));
27
Console.WriteLine($"- [{i}] {
GetConstructionString
(expected[i])}");
35
Console.WriteLine($"- [{i}] {
GetConstructionString
(actual[i])}");
60
return $"new CodeVariableDeclarationStatement({GetType(v.Type)}, {GetString(v.Name)}, {
GetConstructionString
(v.InitExpression)});";
62
return $"new CodeAssignStatement({
GetConstructionString
(cas.Left)}, {
GetConstructionString
(cas.Right)})";
72
string parameters = string.Join(", ", coce.Parameters.Cast<CodeObject>().Select(
GetConstructionString
));
84
return $"new CodePropertyReferenceExpression({
GetConstructionString
(cpre.TargetObject)}, {GetString(cpre.PropertyName)})";