Skip to main content
1 vote
1 answer
37 views

I have something like public class A { public string FullName { get; set; } } A class that I don't want to change. In a PropertyGrid I want it too look like this: In the PropertyGrid it would look ...
Piglet's user avatar
  • 29.3k
2 votes
1 answer
51 views

Assembly A: public class Data { public string Text {get; set;} } Inside Assembly B ( references A): List<string> stringList = GetSomeStringsAtRunTime(); Data obj = new Data(); propertyGrid....
Piglet's user avatar
  • 29.3k
0 votes
0 answers
45 views

In a simple .NET 9 Winforms application, I have tried to create a custom class which is derived from ArrayEditor class, and it works only before I added the Microsoft.WinForms.Designer.SDK in my ...
Karkuvel Rajan's user avatar
0 votes
1 answer
102 views

Imports System.IO.Ports Imports System.Data.SqlClient Imports System.Collections.ObjectModel Imports System.Data.Common Imports Microsoft Imports System.Data.SqlTypes Imports System.Xml Imports System....
bradacsa's user avatar
7 votes
3 answers
7k views

I am deploying an Azure Function called "Bridge" to Azure, targeting .NET 6. The project is referencing a class library called "DBLibrary" that I wrote, and that library is ...
Scott Carpenter's user avatar
0 votes
2 answers
365 views

I would like to create simple exe app in VB, which will open default browser with specified page. I have this code Public Class Form1 Private Sub Label1_Click(sender As Object, e As EventArgs) Handles ...
pomahajbo's user avatar
0 votes
0 answers
180 views

I am currently using the System.ComponentModel.Design.Serialization namespace to generate C# code. This code is compiled later by another application. var manager = new ...
TommyBoii's user avatar
0 votes
0 answers
374 views

I have a C# project runs on both .NET framework 4.6.2 and .NET core 3.1 with a most sharable code. When running in .NET framework, It is loading both the assembly and its parts definition from the x86 ...
SSA's user avatar
  • 1
2 votes
1 answer
1k views

I'm trying to use Entity Framework with a set of entities defined as a part of net standard2.0 nuget package. The project that uses Entity framework is a net472 project. When I'm building the model in ...
Cool Geek's user avatar
0 votes
1 answer
1k views

I have class like public class MyClass { public object Jobj{get; set;} public string summary{get; set;} public string someMethod() { //Do some work return ""; } } and a post ...
Chirag Sheth's user avatar
0 votes
2 answers
1k views

I have a following like classes which i am using as model for entity framework core for one of my table. After saving i am passing the object for some sort of caching work. How can i get the TableName ...
Kamran Shahid's user avatar
4 votes
2 answers
301 views

I have two System.ComponentModel classes, ComponentA and ComponentB: public class ComponentA : Component { [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public ...
akalnay's user avatar
  • 61
4 votes
0 answers
203 views

I'm using Core 3.1 to build a C# WPF MVVM application. I have a base view model class that implements IDataErrorInfo and works fine. This uses a reference to System.ComponentModel. I'm using F# to ...
pilsdumps's user avatar
  • 617
3 votes
0 answers
68 views

I have a data model like below. One of its properties has been decorated with custom attribut - "Mergable": public class Example { [Browsable(false)] [Mergable(false)] public int ...
robs23's user avatar
  • 135
2 votes
3 answers
9k views

I realise this question has been asked, but I have tried all of the suggested solutions I can find. I have a Load Testing project (with a .loadtest file and class that inherits from Microsoft....
John Darvill's user avatar
  • 1,323

15 30 50 per page
1
2 3 4 5
8